summaryrefslogtreecommitdiff
path: root/src/leap/mail/imap/tests/test_imap.py
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2015-12-15 02:04:07 -0400
committerKali Kaneko <kali@leap.se>2015-12-15 02:30:30 -0400
commit14cc0595eb58db6710782f7082dfc4e175eb86fc (patch)
treef171a8209201095e092aa3789035d44e93c11c51 /src/leap/mail/imap/tests/test_imap.py
parent8ddddd77478984777be79e817458183a41f0a978 (diff)
[fix] dummy credentials for tests
imap tests must be adapted, using a dummy credential checker.
Diffstat (limited to 'src/leap/mail/imap/tests/test_imap.py')
-rw-r--r--src/leap/mail/imap/tests/test_imap.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/leap/mail/imap/tests/test_imap.py b/src/leap/mail/imap/tests/test_imap.py
index 62c3c41..ccce285 100644
--- a/src/leap/mail/imap/tests/test_imap.py
+++ b/src/leap/mail/imap/tests/test_imap.py
@@ -575,8 +575,8 @@ class LEAPIMAP4ServerTestCase(IMAP4HelperMixin):
"""
Test login requiring quoting
"""
- self.server._userid = '{test}user@leap.se'
- self.server._password = '{test}password'
+ self.server.checker.userid = '{test}user@leap.se'
+ self.server.checker.password = '{test}password'
def login():
d = self.client.login('{test}user@leap.se', '{test}password')