From 1eb2190f86ff77b217c7ff0b2118461af1c899f4 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 22 Oct 2015 03:09:44 -0400 Subject: [PATCH] Update tags app views tag_delete, single_document_multiple_tag_remove, and multiple_documents_selection_tag_remove to work with the new way filter_by_access works. Add tags app views tests. --- mayan/apps/tags/tests/literals.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mayan/apps/tags/tests/literals.py b/mayan/apps/tags/tests/literals.py index aac298922d..027326eace 100644 --- a/mayan/apps/tags/tests/literals.py +++ b/mayan/apps/tags/tests/literals.py @@ -1,6 +1,6 @@ from __future__ import unicode_literals -TEST_TAG_LABEL = 'test tag' -TEST_TAG_LABEL_ALTERNATE = 'test tag alternate' +TEST_TAG_LABEL = 'test-tag' +TEST_TAG_LABEL_EDITED = 'test-tag-edited' TEST_TAG_COLOR = '#001122' -TEST_TAG_COLOR_ALTERNATE = '#221100' +TEST_TAG_COLOR_EDITED = '#221100'