diff options
author | Ruben Pollan <meskio@sindominio.net> | 2017-10-24 12:58:57 +0200 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2017-10-26 18:37:06 +0200 |
commit | 5c90b7f18b7f4a6262566d4c2254fbb05220516b (patch) | |
tree | 36840115b66305f81ebfd479a5fcb51ccb9570cb /tests/integration/mail | |
parent | ec01098129d885911715260f5bffb701fa65028c (diff) |
[test] update imap flag list
Diffstat (limited to 'tests/integration/mail')
-rw-r--r-- | tests/integration/mail/imap/test_imap.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/integration/mail/imap/test_imap.py b/tests/integration/mail/imap/test_imap.py index 82e416e5..318c5a92 100644 --- a/tests/integration/mail/imap/test_imap.py +++ b/tests/integration/mail/imap/test_imap.py @@ -462,8 +462,7 @@ class LEAPIMAP4ServerTestCase(IMAP4HelperMixin): self.assertEqual(self.selectedArgs, { 'EXISTS': 0, 'RECENT': 0, 'UIDNEXT': 1, 'UIDVALIDITY': 42, - 'FLAGS': ('\\Seen', '\\Answered', '\\Flagged', - '\\Deleted', '\\Draft', '\\Recent', 'List'), + 'FLAGS': ('\\Recent', 'List'), 'READ-WRITE': True }) @@ -671,8 +670,7 @@ class LEAPIMAP4ServerTestCase(IMAP4HelperMixin): self.assertEqual(self.examinedArgs, { 'EXISTS': 0, 'RECENT': 0, 'UIDNEXT': 1, 'UIDVALIDITY': 42, - 'FLAGS': ('\\Seen', '\\Answered', '\\Flagged', - '\\Deleted', '\\Draft', '\\Recent', 'List'), + 'FLAGS': ('\\Recent', 'List'), 'READ-WRITE': False}) def _listSetup(self, f, f2=None): |