Skip to content

Commit c5f6971

Browse files
committed
Fix: fix accidental error
1 parent 634710e commit c5f6971

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/integration/test_client_server_integration.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1041,9 +1041,8 @@ async def test_rest_transport_get_signed_card(
10411041
)
10421042

10431043
# Get the card, this will trigger verification in get_card
1044-
signature_verifier = (
1045-
create_key_provider(public_key),
1046-
['HS384', 'ES256', 'RS256'],
1044+
signature_verifier = create_signature_verifier(
1045+
create_key_provider(public_key), ['HS384', 'ES256', 'RS256']
10471046
)
10481047
result = await transport.get_card(signature_verifier=signature_verifier)
10491048
assert result.name == extended_agent_card.name

0 commit comments

Comments
 (0)