summaryrefslogtreecommitdiff
path: root/service/test/user_agent_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'service/test/user_agent_test.py')
-rw-r--r--service/test/user_agent_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/service/test/user_agent_test.py b/service/test/user_agent_test.py
index 10d7fc6c..28fb4b69 100644
--- a/service/test/user_agent_test.py
+++ b/service/test/user_agent_test.py
@@ -30,7 +30,7 @@ class UserAgentTest(unittest.TestCase):
def test_create_or_send_draft_should_create_draft_if_mail_has_no_ident(self):
mail = self.mail_without_ident()
- pixelated.adapter.pixelated_mail.from_dict = lambda self: mail #has no ident
+ pixelated.adapter.pixelated_mail.from_dict = lambda self: mail # has no ident
self.app.post('/mails', data='{}', content_type="application/json")
@@ -38,7 +38,7 @@ class UserAgentTest(unittest.TestCase):
def test_create_or_send_draft_should_send_draft_if_mail_has_ident(self):
mail = self.mail_with_ident()
- pixelated.adapter.pixelated_mail.from_dict = lambda self: mail #does have ident
+ pixelated.adapter.pixelated_mail.from_dict = lambda self: mail # does have ident
self.app.post('/mails', data='{}', content_type="application/json")