From fa654da6130df80239e181c432595442e688ee8b Mon Sep 17 00:00:00 2001 From: Ville Skyttä Date: Tue, 14 Jun 2016 16:03:12 +0300 Subject: Removed usage of a few deprecated unittest assertions. --- tests/check_framework/test_urls.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests/check_framework') 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/\$', at 0x(\w+)>\) is " r"invalid. Ensure that urlpatterns is a list of url\(\) instances.$" )) -- cgit v1.3