diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2017-04-26 18:56:49 +0200 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2017-04-27 19:33:30 +0200 |
commit | 13760d78fba87570c91c0a2e702980d2ec45a0ed (patch) | |
tree | 309b2925857abe720468b32dfebebf82d2076817 /tests/integration/mail/smtp | |
parent | 6109dce577a160e64a87ec0573c83c310e913cbc (diff) |
[tests] fix tests
mock a renamed method.
Diffstat (limited to 'tests/integration/mail/smtp')
-rw-r--r-- | tests/integration/mail/smtp/test_gateway.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/mail/smtp/test_gateway.py b/tests/integration/mail/smtp/test_gateway.py index 38abfe7..aac90b5 100644 --- a/tests/integration/mail/smtp/test_gateway.py +++ b/tests/integration/mail/smtp/test_gateway.py @@ -144,7 +144,7 @@ class TestSmtpGateway(KeyManagerWithSoledadTestCase): self._soledad, gpgbinary=self.gpg_binary_path) yield pgp.delete_key(pubkey) # mock the key fetching - self.km._fetch_keys_from_server = Mock( + self.km._fetch_keys_from_server_and_store_local = Mock( return_value=fail(errors.KeyNotFound())) user = TEST_USER proto = getSMTPFactory({user: None}, {user: self.km}, {user: None}) |