summaryrefslogtreecommitdiff
path: root/service/test
diff options
context:
space:
mode:
authorDuda Dornelles <dudassdornelles@gmail.com>2015-01-27 16:26:01 -0200
committerPixpoa pairing <pixpoapairing@pixelated-project.org>2015-01-27 16:26:01 -0200
commita211149d2a1bdf21b970cdff1bd5a31a9ecdadaf (patch)
tree01ee96303bb438e2acfeada4324f98dd1939f4fa /service/test
parent2f25e6429d9d846632314d093591ad413fac0d9e (diff)
#184 not creating empty tags of any length (as opposed to only empty strings with len==0)
Diffstat (limited to 'service/test')
-rw-r--r--service/test/integration/test_tags.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/service/test/integration/test_tags.py b/service/test/integration/test_tags.py
index b32e89c7..0efcbb6b 100644
--- a/service/test/integration/test_tags.py
+++ b/service/test/integration/test_tags.py
@@ -46,7 +46,7 @@ class TagsTest(SoledadTestBase):
mail = MailBuilder().with_subject('Mail with tags').build_input_mail()
self.client.add_mail_to_inbox(mail)
- self.post_tags(mail.ident, self._tags_json(['tag1', '']))
+ self.post_tags(mail.ident, self._tags_json(['tag1', ' ']))
mail = self.get_mail(mail.ident)