fix tests

This commit is contained in:
merlokk
2019-07-04 20:42:24 +03:00
parent 2272e69e15
commit 4d9285085f
2 changed files with 2 additions and 4 deletions

View File

@ -222,9 +222,7 @@ class FIDO2Tests(Tester):
)
with Test("Get shared secret"):
key_agreement, shared_secret = (
self.client.pin_protocol.get_shared_secret()
)
key_agreement, shared_secret = self.client.pin_protocol.get_shared_secret()
cipher = Cipher(
algorithms.AES(shared_secret),
modes.CBC(b"\x00" * 16),