summaryrefslogtreecommitdiff
path: root/service/test/support/integration_helper.py
diff options
context:
space:
mode:
authorBruno Wagner <bwagner@thoughtworks.com>2014-10-15 15:55:53 +0200
committerBruno Wagner <bwagner@thoughtworks.com>2014-10-15 15:58:06 +0200
commitd4d0e86b25dc9c478c04d30cb6a86824332c2c7f (patch)
tree1bb49e6b71267026b4b4f55903a537dc69f057e5 /service/test/support/integration_helper.py
parentfca5dc46de7d3cfb0d4c571f9e3040ad05e2cc54 (diff)
#107 Statuses are only used when delivering mails to the front-end, flags are used elsewhere
Diffstat (limited to 'service/test/support/integration_helper.py')
-rw-r--r--service/test/support/integration_helper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/service/test/support/integration_helper.py b/service/test/support/integration_helper.py
index 1b5b1135..248b7064 100644
--- a/service/test/support/integration_helper.py
+++ b/service/test/support/integration_helper.py
@@ -113,7 +113,7 @@ class MailBuilder:
return self
def with_status(self, status):
- self.mail['status'].append(Status('read'))
+ self.mail['status'].append('read')
return self
def with_ident(self, ident):