mirror of
https://github.com/huashengdun/webssh.git
synced 2026-02-14 11:49:50 +00:00
Fix wrong passphrase test
This commit is contained in:
@@ -157,7 +157,7 @@ class TestPrivateKey(unittest.TestCase):
|
||||
pk = self.get_pk_obj(fname, password='wrongpass')
|
||||
with self.assertRaises(InvalidValueError) as ctx:
|
||||
pk.get_pkey_obj()
|
||||
self.assertIn('wrong password', str(ctx.exception))
|
||||
self.assertIn('wrong passphrase', str(ctx.exception))
|
||||
|
||||
pk = self.get_pk_obj(fname, password=password)
|
||||
self.assertIsInstance(pk.get_pkey_obj(), klass)
|
||||
|
||||
Reference in New Issue
Block a user