diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2023-01-21 09:52:49 -0800 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net> | 2023-01-21 09:53:11 -0800 |
commit | d9e353315aa6c3f7c75f9aa883c656b77cdd5e54 (patch) | |
tree | 939415f5f294cb590fae4f395f4506b706d1d004 /tests | |
parent | b38e259457fe68003f4d8e8eaffb17ee985eb013 (diff) |
Add function to temporarily mute errors from an account
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_canarydb.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_canarydb.py b/tests/test_canarydb.py index 47bdc52..751c2cf 100644 --- a/tests/test_canarydb.py +++ b/tests/test_canarydb.py @@ -89,6 +89,7 @@ class TestCanaryDB(unittest.TestCase): self.assertEqual(address, accounts[0][1]) self.assertEqual(imapserver, accounts[0][2]) self.assertEqual(password, accounts[0][3]) + self.assertEqual(0, accounts[0][4]) # Remove the account self.db.remove_account(listAddress, address) |