Skip to content

Commit

Permalink
Merge pull request #1528 from ianco/master
Browse files Browse the repository at this point in the history
Fix integration tests (revocation notifications)
  • Loading branch information
swcurran authored Dec 2, 2021
2 parents 3a0af13 + 9c9a2d1 commit 26d23bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions demo/features/steps/0453-issue-credential.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ def step_impl(context, holder):
context.cred_exchange = cred_exchange
print("rev_reg_id:", cred_exchange["indy"]["rev_reg_id"])
print("cred_rev_id:", cred_exchange["indy"]["cred_rev_id"])
print("connection_id:", cred_exchange["cred_ex_record"]["connection_id"])

# revoke the credential
revoke_status = agent_container_POST(
Expand All @@ -97,6 +98,7 @@ def step_impl(context, holder):
"rev_reg_id": cred_exchange["indy"]["rev_reg_id"],
"cred_rev_id": cred_exchange["indy"]["cred_rev_id"],
"publish": "Y",
"connection_id": cred_exchange["cred_ex_record"]["connection_id"],
},
)

Expand Down
1 change: 1 addition & 0 deletions demo/features/steps/0586-sign-transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,7 @@ def step_impl(context, agent_name):
"rev_reg_id": cred_exchange["indy"]["rev_reg_id"],
"cred_rev_id": cred_exchange["indy"]["cred_rev_id"],
"publish": False,
"connection_id": cred_exchange["cred_ex_record"]["connection_id"],
},
)

Expand Down

0 comments on commit 26d23bf

Please sign in to comment.