diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2017-11-29 12:22:49 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2017-11-29 12:22:51 -0800 |
commit | 664568f662a028b1056ddd43191706f8d6de87a5 (patch) | |
tree | 60499155984f6a84935c7fec218b66c5a2d8594d | |
parent | f2a7bb421cfa46e59f1c978bc30caf42311c8748 (diff) |
Fix re: pytest upgrade, broke in recent merge
-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 7b2ab2ec..1827d2a9 100644 --- a/tests/test_pkey.py +++ b/tests/test_pkey.py @@ -470,7 +470,7 @@ class KeyTest(unittest.TestCase): def test_ed25519_nonbytes_password(self): # https://github.com/paramiko/paramiko/issues/1039 key = Ed25519Key.from_private_key_file( - test_path('test_ed25519_password.key'), + _support('test_ed25519_password.key'), # NOTE: not a bytes. Amusingly, the test above for same key DOES # explicitly cast to bytes...code smell! 'abc123', |