summaryrefslogtreecommitdiff
path: root/tests/check_framework
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2016-06-14 16:03:12 +0300
committerTim Graham <timograham@gmail.com>2016-06-14 09:03:12 -0400
commitfa654da6130df80239e181c432595442e688ee8b (patch)
treedfd49d910bc2f41b1c33a86384dd07a34efbf5f4 /tests/check_framework
parent7003174fec188bd5a21e3d62bd5e13e80f6f329c (diff)
Removed usage of a few deprecated unittest assertions.
Diffstat (limited to 'tests/check_framework')
-rw-r--r--tests/check_framework/test_urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/check_framework/test_urls.py b/tests/check_framework/test_urls.py
index a1ac727057..786d040493 100644
--- a/tests/check_framework/test_urls.py
+++ b/tests/check_framework/test_urls.py
@@ -4,6 +4,7 @@ from django.core.checks.urls import (
)
from django.test import SimpleTestCase
from django.test.utils import override_settings
+from django.utils import six
class CheckUrlsTest(SimpleTestCase):
@@ -34,7 +35,7 @@ class CheckUrlsTest(SimpleTestCase):
result = check_url_config(None)
warning = result[0]
self.assertEqual(warning.id, 'urls.E004')
- self.assertRegexpMatches(warning.msg, (
+ six.assertRegex(self, warning.msg, (
r"^Your URL pattern \('\^tuple/\$', <function <lambda> at 0x(\w+)>\) is "
r"invalid. Ensure that urlpatterns is a list of url\(\) instances.$"
))