diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2018-03-12 16:06:07 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2018-03-12 16:06:21 -0700 |
commit | 212297ef02c14112349e38e1d06aab3be4c6e1fd (patch) | |
tree | 574b2c20ec9bc473c9c7a8eb7c9b7dfc8c65696e | |
parent | 225a6da81e400139d9d1d61027614ac119e20a59 (diff) |
Uncaught typo in test suite
Was limited to the 2.4 branch, master either never got it or fixed it
without a backport.
-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', |