summaryrefslogtreecommitdiffstats
path: root/patchwork/tests/test_tags.py
diff options
context:
space:
mode:
Diffstat (limited to 'patchwork/tests/test_tags.py')
-rw-r--r--patchwork/tests/test_tags.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/patchwork/tests/test_tags.py b/patchwork/tests/test_tags.py
index f1196e7..a1e03f5 100644
--- a/patchwork/tests/test_tags.py
+++ b/patchwork/tests/test_tags.py
@@ -31,7 +31,7 @@ class ExtractTagsTest(TestCase):
email = 'test@exmaple.com'
name_email = 'test name <' + email + '>'
- fixtures = ['default_tags']
+ fixtures = ['default_tags', 'default_states']
def assertTagsEqual(self, str, acks, reviews, tests):
counts = extract_tags(str, Tag.objects.all())
@@ -83,7 +83,7 @@ class PatchTagsTest(TransactionTestCase):
ACK = 1
REVIEW = 2
TEST = 3
- fixtures = ['default_tags']
+ fixtures = ['default_tags', 'default_states']
def assertTagsEqual(self, patch, acks, reviews, tests):
patch = Patch.objects.get(pk=patch.pk)