Skip to content

Commit

Permalink
Merge pull request #797 from nodlesh/calibrate-peer-did-tests-to-2862
Browse files Browse the repository at this point in the history
Adjust DID prefix check on responder call
  • Loading branch information
swcurran committed Apr 24, 2024
2 parents aaf3477 + a42f957 commit fa24184
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aries-test-harness/features/steps/0023-did-exchange.py
Expand Up @@ -408,8 +408,8 @@ def step_impl(context, responder: str, requester: str):
resp_json["my_did"].startswith("did:")
), f"my_did {resp_json['my_did']} for {responder} does not start with did:"
assert (
resp_json["their_did"].startswith(context.peer_did_method)
), f"their_did {resp_json['their_did']} for {requester} does not start with {context.peer_did_method}"
resp_json["their_did"].startswith("did:")
), f"their_did {resp_json['their_did']} for {requester} does not start with did:"



Expand Down

0 comments on commit fa24184

Please sign in to comment.