Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
brenzi committed Jun 26, 2024
1 parent 164ef2c commit 9ffae47
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/bootstrap_demo_community.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,9 @@ def test_reputation_caching(client, cid):
# check if the reputation cache was updated
rep = client.reputation(account1)
print(rep)
if ('1', ' sqm1v79dF6b', 'VerifiedLinked(2)') not in rep or (
'2', ' sqm1v79dF6b', 'VerifiedLinked(3)') not in rep or (
'3', ' sqm1v79dF6b', 'VerifiedUnlinked') not in rep:
if ('1', 'sqm1v79dF6b', 'VerifiedLinked(2)') not in rep or (
'2', 'sqm1v79dF6b', 'VerifiedLinked(3)') not in rep or (
'3', 'sqm1v79dF6b', 'VerifiedUnlinked') not in rep:
print("wrong reputation")
exit(1)

Expand Down

0 comments on commit 9ffae47

Please sign in to comment.