aboutsummaryrefslogtreecommitdiffstats
path: root/tests/tests.py
diff options
context:
space:
mode:
authorAymeric Augustin2013-10-16 22:14:41 +0200
committerAymeric Augustin2013-10-17 18:24:57 +0200
commitc1f39b1a168d535e0b90d3c69273e391adf22637 (patch)
tree9ae12cb257585e4681edea253209d9c150f3731a /tests/tests.py
parent79831e4053b472921621f288483e95a961a4d142 (diff)
downloaddjango-debug-toolbar-c1f39b1a168d535e0b90d3c69273e391adf22637.tar.bz2
Remove compatibility code for unsupported version of Django.
Diffstat (limited to 'tests/tests.py')
-rw-r--r--tests/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tests.py b/tests/tests.py
index fcb6c1e..4c6f246 100644
--- a/tests/tests.py
+++ b/tests/tests.py
@@ -159,7 +159,7 @@ class DebugToolbarTestCase(BaseTestCase):
def test_url_resolving_positional(self):
stats = self._resolve_stats('/resolving1/a/b/')
- self.assertEquals(stats['view_urlname'], 'positional-resolving') # Django >= 1.3
+ self.assertEquals(stats['view_urlname'], 'positional-resolving')
self.assertEquals(stats['view_func'], 'tests.views.resolving_view')
self.assertEquals(stats['view_args'], ('a', 'b'))
self.assertEquals(stats['view_kwargs'], {})