From f49197a27b688258fe784837bdc93c7d37a1e6f5 Mon Sep 17 00:00:00 2001 From: Alain Brenzikofer Date: Wed, 6 Mar 2024 09:55:16 +0100 Subject: [PATCH] fix CI test validation for VerifiedLinked(_) --- client/bootstrap_demo_community.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/bootstrap_demo_community.py b/client/bootstrap_demo_community.py index 828ff416..97fcea58 100755 --- a/client/bootstrap_demo_community.py +++ b/client/bootstrap_demo_community.py @@ -149,7 +149,7 @@ def test_reputation_caching(client, cid, account): # check if the reputation cache was updated rep = client.reputation(account1) print(rep) - if ('1', ' sqm1v79dF6b', 'VerifiedLinked') not in rep or ('2', ' sqm1v79dF6b', 'VerifiedLinked') 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)