summaryrefslogtreecommitdiff
path: root/service/test/integration/test_tags.py
diff options
context:
space:
mode:
Diffstat (limited to 'service/test/integration/test_tags.py')
-rw-r--r--service/test/integration/test_tags.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/service/test/integration/test_tags.py b/service/test/integration/test_tags.py
index ad723067..2e178a4d 100644
--- a/service/test/integration/test_tags.py
+++ b/service/test/integration/test_tags.py
@@ -16,7 +16,7 @@
import json
from test.support.integration import *
-from pixelated.adapter.services.tag_service import TagService
+from pixelated.adapter.services.tag_service import SPECIAL_TAGS
class TagsTest(SoledadTestBase):
@@ -82,7 +82,7 @@ class TagsTest(SoledadTestBase):
mail = MailBuilder().with_subject('Mail with tags').build_input_mail()
self.client.add_mail_to_inbox(mail)
- for tag in TagService.SPECIAL_TAGS:
+ for tag in SPECIAL_TAGS:
response = self.post_tags(mail.ident, self._tags_json([tag.name.upper()]))
self.assertEquals("None of the following words can be used as tags: %s" % tag.name, response)