Skip to content
This repository was archived by the owner on Nov 21, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion int/tests/cluster/test_redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ async def test_send_cred_def(

# Validate that the info matches
assert connection_info[0]["endpoint"] == echo_endpoint
assert connection_info[0]["did"] == response["their_did"]
assert connection_info[0]["did"] == f"did:sov:{response['their_did']}"
assert connection_info[0]["label"] == response["their_label"]
2 changes: 1 addition & 1 deletion int/tests/host/test_redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ async def test_send_cred_def(

# Validate that the info matches
assert connection_info[0]["endpoint"] == echo_endpoint
assert connection_info[0]["did"] == response["their_did"]
assert connection_info[0]["did"] == f"did:sov:{response['their_did']}"
assert connection_info[0]["label"] == response["their_label"]
74 changes: 42 additions & 32 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Your Name <you@example.com>"]

[tool.poetry.dependencies]
python = ">=3.9.0"
aries-cloudagent = { version = "^0.9.0", python = ">=3.9" }
aries-cloudagent = { version = "0.10.1", python = ">=3.9"}
aioredis = "^2.0.1"
redis = "^4.1.4"
packaging = { version = ">=23.1,<24.0", python = ">=3.9" }
Expand Down