aboutsummaryrefslogtreecommitdiffstats
path: root/src/shorturls/tests
diff options
context:
space:
mode:
authorBen Firshman2010-01-25 00:00:12 +0000
committerBen Firshman2014-09-20 15:32:13 -0700
commit3043cf9efabfb521137a46e147fadc9176a81f23 (patch)
tree73042b5a40545ec3dcd401e37f49c5ce5b6142fc /src/shorturls/tests
parent26a2bf299401551f37b84a9a6013190c4dcfaccf (diff)
downloaddjango-shorturls-3043cf9efabfb521137a46e147fadc9176a81f23.tar.bz2
Fixed test case not running
Diffstat (limited to 'src/shorturls/tests')
-rw-r--r--src/shorturls/tests/__init__.py4
-rw-r--r--src/shorturls/tests/test_templatetag.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/shorturls/tests/__init__.py b/src/shorturls/tests/__init__.py
index 6687828..a1c5afe 100644
--- a/src/shorturls/tests/__init__.py
+++ b/src/shorturls/tests/__init__.py
@@ -1,4 +1,4 @@
from shorturls.tests.models import *
-from shorturls.tests.test_views import *
+from shorturls.tests.test_baseconv import *
from shorturls.tests.test_templatetag import *
-from shorturls.tests.test_baseconv import * \ No newline at end of file
+from shorturls.tests.test_views import *
diff --git a/src/shorturls/tests/test_templatetag.py b/src/shorturls/tests/test_templatetag.py
index 2127817..ec91908 100644
--- a/src/shorturls/tests/test_templatetag.py
+++ b/src/shorturls/tests/test_templatetag.py
@@ -3,7 +3,7 @@ from django.conf import settings
from django.test import TestCase
from shorturls.tests.models import Animal, Vegetable, Mineral
-class RedirectViewTestCase(TestCase):
+class TemplateTagTestCase(TestCase):
urls = 'shorturls.urls'
fixtures = ['shorturls-test-data.json']