From adaf53c2561a99e83502e19e13d8923281a67d29 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Sat, 11 May 2013 08:55:47 +0000 Subject: [PATCH] Fix a call in a unittest to _make_binary_stream() to call the correct module. --- gnupg/tests/test_gnupg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnupg/tests/test_gnupg.py b/gnupg/tests/test_gnupg.py index c214e2c..35a2d11 100644 --- a/gnupg/tests/test_gnupg.py +++ b/gnupg/tests/test_gnupg.py @@ -703,7 +703,7 @@ class GPGTestCase(unittest.TestCase): key = self.generate_key("Barbara Brown", "beta.com") barbara = key.fingerprint data = "Hello, world!" - file = gnupg._make_binary_stream(data, self.gpg.encoding) + file = util._make_binary_stream(data, self.gpg.encoding) edata = self.gpg.encrypt_file(file, barbara, armor=False, output=encfname) ddata = self.gpg.decrypt_file(efile, passphrase="bbrown",