summaryrefslogtreecommitdiffhomepage
path: root/tests/auth.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auth.py')
-rw-r--r--tests/auth.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auth.py b/tests/auth.py
index 52544e88..c0afe889 100644
--- a/tests/auth.py
+++ b/tests/auth.py
@@ -404,7 +404,7 @@ class AuthSource_:
source = InMemoryPrivateKey("foo", pkey)
assert (
repr(source)
- == "InMemoryPrivateKey(pkey=Ed25519Key(alg=ED25519, bits=256, fp=SHA256:J6VESFdD3xSChn8y9PzWzeF+1tl892mOy2TqkMLO4ow))" # noqa
+ == "InMemoryPrivateKey(pkey=PKey(alg=ED25519, bits=256, fp=SHA256:J6VESFdD3xSChn8y9PzWzeF+1tl892mOy2TqkMLO4ow))" # noqa
)
def repr_appends_agent_flag_when_AgentKey(self):
@@ -413,7 +413,7 @@ class AuthSource_:
source = InMemoryPrivateKey("foo", pkey)
assert (
repr(source)
- == "InMemoryPrivateKey(pkey=AgentKey(alg=ED25519, bits=256, fp=SHA256:J6VESFdD3xSChn8y9PzWzeF+1tl892mOy2TqkMLO4ow)) [agent]" # noqa
+ == "InMemoryPrivateKey(pkey=PKey(alg=ED25519, bits=256, fp=SHA256:J6VESFdD3xSChn8y9PzWzeF+1tl892mOy2TqkMLO4ow)) [agent]" # noqa
)
class OnDiskPrivateKey_: