Skip to content

Commit

Permalink
Fix for async test
Browse files Browse the repository at this point in the history
  • Loading branch information
hbldh committed Apr 15, 2024
1 parent fafa06b commit 11b4c85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_asyncclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async def test_authentication_and_collect(cert_and_key, ip_address):
"""Authenticate call and then collect with the returned orderRef UUID."""
c = BankIDAsyncClient(certificates=cert_and_key, test_server=True)
assert "appapi2.test.bankid.com.pem" in str(c.verify_cert)
out = await c.authenticate(ip_address_async)
out = await c.authenticate(ip_address)

assert isinstance(out, dict)
# UUID.__init__ performs the UUID compliance assertion.
Expand Down

0 comments on commit 11b4c85

Please sign in to comment.