diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2019-06-21 16:52:23 -0400 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2019-06-21 16:52:23 -0400 |
commit | 51dbcb393ffe915c34c452afdc892f07a4696153 (patch) | |
tree | 6edfccfb2d7933ea3d2b92e6c90854b8a2a02f43 | |
parent | e5d052c4da3b9a966b1c6ee67c93157a3c55b871 (diff) | |
parent | f0e8c64727367713a12a30213ce48504ee0ba3d8 (diff) |
Merge branch '2.4' into 2.5
-rw-r--r-- | tests/test_pkey.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/test_pkey.py b/tests/test_pkey.py index 749bb5f5..0e60126a 100644 --- a/tests/test_pkey.py +++ b/tests/test_pkey.py @@ -469,11 +469,15 @@ class KeyTest(unittest.TestCase): def test_ed25519_funky_padding(self): # Proves #1306 by just not exploding with 'Invalid key'. - Ed25519Key.from_private_key_file(_support("test_ed25519-funky-padding.key")) + Ed25519Key.from_private_key_file( + _support("test_ed25519-funky-padding.key") + ) def test_ed25519_funky_padding_with_passphrase(self): # Proves #1306 by just not exploding with 'Invalid key'. - Ed25519Key.from_private_key_file(_support("test_ed25519-funky-padding_password.key"), b"asdf") + Ed25519Key.from_private_key_file( + _support("test_ed25519-funky-padding_password.key"), b"asdf" + ) def test_ed25519_compare(self): # verify that the private & public keys compare equal |