Skip to content

Commit

Permalink
[qa] fix tests/stores/test_auth_tokens_store.py
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanBldy committed Jul 11, 2024
1 parent 2bfdc00 commit 4685631
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/stores/test_auth_tokens_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def test_delete(self):
self.assertIsNone(self.store.get("key-1"))

def test_is_revoked(self):
self.assertTrue(self.store.is_revoked("key-1"))
self.assertFalse(self.store.is_revoked("key-1"))
self.store.add("key-1", "true")
self.assertTrue(self.store.is_revoked("key-1"))
self.store.add("key-1", "false")
Expand Down

0 comments on commit 4685631

Please sign in to comment.