Fix a call in a unittest to _make_binary_stream() to call the correct module.

testing/mmn/mktime_takes_localtime_not_gmtime
Isis Lovecruft 2013-05-11 08:55:47 +00:00
parent 79bf77a185
commit adaf53c256
No known key found for this signature in database
GPG Key ID: A3ADB67A2CDB8B35
1 changed files with 1 additions and 1 deletions

View File

@ -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",