Skip to content

Commit

Permalink
fix reputation checks
Browse files Browse the repository at this point in the history
  • Loading branch information
brenzi committed Mar 6, 2024
1 parent f49197a commit 7c55d55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/bootstrap_demo_community.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def test_reputation_caching(client, cid, account):
rep = client.reputation(account1)
print(rep)
# after the registration the second reputation should now be linked
if ('3', ' sqm1v79dF6b', 'VerifiedLinked') not in rep:
if ('3', ' sqm1v79dF6b', 'VerifiedLinked(4)') not in rep:
print("reputation not linked")
exit(1)

Expand Down Expand Up @@ -213,7 +213,7 @@ def test_unregister_and_upgrade_registration(client, cid):
check_participant_count(client, cid, "Newbie", 0)
check_participant_count(client, cid, "Reputable", 1)

check_reputation(client, cid, newbie, 6, "VerifiedLinked")
check_reputation(client, cid, newbie, 6, "VerifiedLinked(7)")

client.unregister_participant(newbie, cid, cindex=6)
client.await_block(3)
Expand Down

0 comments on commit 7c55d55

Please sign in to comment.