Skip to content

Commit a5dcc34

Browse files
committed
Change assertTrue(not var) to assertFalse(var) in passport-vc test
Signed-off-by: Tiago Nascimento <[email protected]>
1 parent 72446a4 commit a5dcc34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/passport/tests/test_passport_vc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@ def test_issue_and_verify_credential(self):
4646
json.dumps(options))
4747

4848
verify = json.loads(verifyStr)
49-
self.assertTrue(not verify["errors"])
49+
self.assertFalse(verify["errors"])
5050

5151
pass

0 commit comments

Comments
 (0)