diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2017-05-26 21:36:43 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2017-06-03 02:02:46 -0400 |
commit | 9b98d347ce2b1ba371e4689ea42c22962ed32e8e (patch) | |
tree | 388791e2c238325ce54aa17c0ec726271ef4e9dd /tests | |
parent | 38ed8b62e0955501043f1e4fba6b14d1424a5ccd (diff) |
py3k
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_pkey.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_pkey.py b/tests/test_pkey.py index 74330b8d..a26ff170 100644 --- a/tests/test_pkey.py +++ b/tests/test_pkey.py @@ -433,7 +433,7 @@ class KeyTest(unittest.TestCase): def test_ed25519(self): key1 = Ed25519Key.from_private_key_file(test_path('test_ed25519.key')) key2 = Ed25519Key.from_private_key_file( - test_path('test_ed25519_password.key'), 'abc123' + test_path('test_ed25519_password.key'), b'abc123' ) self.assertNotEqual(key1.asbytes(), key2.asbytes()) |