diff options
author | Ruben Pollan <meskio@sindominio.net> | 2015-01-23 11:52:42 -0600 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2015-02-11 14:05:44 -0400 |
commit | 078970756ef995b73e39cd00ba4cc27d42913750 (patch) | |
tree | 9c503c1038481b1d7567f113cb145d88b0dec25c /src/leap/mail/outgoing/tests | |
parent | 9d2cf05fa575aa5a01e255837738f3aa2740b19e (diff) |
Remove footer
Diffstat (limited to 'src/leap/mail/outgoing/tests')
-rw-r--r-- | src/leap/mail/outgoing/tests/test_outgoing.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/leap/mail/outgoing/tests/test_outgoing.py b/src/leap/mail/outgoing/tests/test_outgoing.py index fa50c30..d7423b6 100644 --- a/src/leap/mail/outgoing/tests/test_outgoing.py +++ b/src/leap/mail/outgoing/tests/test_outgoing.py @@ -58,9 +58,7 @@ class TestOutgoingMail(TestCaseWithKeyManager): self.lines = [line for line in self.EMAIL_DATA[4:12]] self.lines.append('') # add a trailing newline self.raw = '\r\n'.join(self.lines) - self.expected_body = ('\r\n'.join(self.EMAIL_DATA[9:12]) + - "\r\n\r\n--\r\nI prefer encrypted email - " - "https://leap.se/key/anotheruser\r\n") + self.expected_body = '\r\n'.join(self.EMAIL_DATA[9:12]) + "\r\n" self.fromAddr = ADDRESS_2 def init_outgoing_and_proto(_): |