Skip to content

Commit

Permalink
Merge pull request #14 from Indicio-tech/update/acapy-0.11.0
Browse files Browse the repository at this point in the history
feat: upgrade to ACA-Py 0.11.0
  • Loading branch information
dbluhm authored Dec 8, 2023
2 parents 8810af6 + 9c28d42 commit aaae10a
Show file tree
Hide file tree
Showing 4 changed files with 812 additions and 763 deletions.
4 changes: 2 additions & 2 deletions int/tests/test_connectivity.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ async def test_send_and_receive(echo: EchoClient, connection: ConnectionInfo):
await echo.send_message(
connection,
{
"@type": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/trust_ping/1.0/ping",
"@type": "https://didcomm.org/trust_ping/1.0/ping",
"response_resquested": True,
},
)
response = await echo.get_message(connection)
assert response["@type"] == (
"did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/trust_ping/1.0/ping_response"
"https://didcomm.org/trust_ping/1.0/ping_response"
)
4 changes: 2 additions & 2 deletions int/tests/test_qa.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ async def test_send_question_receive_answer(
response = await echo.get_message(connection)

assert response["@type"] == (
"did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/questionanswer/1.0/answer"
"https://didcomm.org/questionanswer/1.0/answer"
)
assert response["response"] == "yes"

Expand Down Expand Up @@ -80,7 +80,7 @@ async def test_receive_question(

response = await echo.get_message(connection)
assert response["@type"] == (
"did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/questionanswer/1.0/question"
"https://didcomm.org/questionanswer/1.0/question"
)
thread_id = response["@id"]
assert thread_id == question_thread_id
Expand Down
Loading

0 comments on commit aaae10a

Please sign in to comment.