diff options
author | Zara Gebru <zgebru@thoughtworks.com> | 2016-11-18 16:51:27 +0100 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2016-11-22 15:57:05 +0100 |
commit | 1baa817b567cc234e76faafc5ec92cfa75222ba6 (patch) | |
tree | 156204c635077f27f6c0f124f731c6b2347f961a /src/leap/bitmask/mail | |
parent | 0871c96aa71d9b9112a90ab7cc6d4adfc3cd7fa4 (diff) |
[tests] fix keymanager tests after refactor and merge
- some pep8 problems
- some confusion with old and new code after merging
from old keymanager
Diffstat (limited to 'src/leap/bitmask/mail')
-rw-r--r-- | src/leap/bitmask/mail/testing/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/bitmask/mail/testing/__init__.py b/src/leap/bitmask/mail/testing/__init__.py index 5ebfaf5..afb8e43 100644 --- a/src/leap/bitmask/mail/testing/__init__.py +++ b/src/leap/bitmask/mail/testing/__init__.py @@ -69,7 +69,7 @@ class KeyManagerWithSoledadTestCase(unittest.TestCase, BaseLeapTest): def deliverBody(self, x): return '' - self.km._async_client_pinned.request = Mock( + self.km._nicknym._async_client_pinned.request = Mock( return_value=defer.succeed(Response())) d1 = self.km.put_raw_key(PRIVATE_KEY, ADDRESS) |