From 1992d55eb3731bccef549c2cede08cfcca1309de Mon Sep 17 00:00:00 2001 From: Florian Apolloner Date: Sun, 25 May 2014 23:14:50 +0200 Subject: [1.7.x] Fixed a few warnings in the testsuite. Backport of 536ebaa048f69c18aa36448074f65f2741e35df5 from master. --- tests/forms_tests/tests/test_forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/forms_tests') diff --git a/tests/forms_tests/tests/test_forms.py b/tests/forms_tests/tests/test_forms.py index a2ffc3b1fe..93deec7bd1 100644 --- a/tests/forms_tests/tests/test_forms.py +++ b/tests/forms_tests/tests/test_forms.py @@ -59,7 +59,7 @@ class FormsTestCase(TestCase): self.assertHTMLEqual(str(p['birthday']), '') nonexistenterror = "Key u?'nonexistentfield' not found in 'Person'" - with self.assertRaisesRegexp(KeyError, nonexistenterror): + with self.assertRaisesRegex(KeyError, nonexistenterror): p['nonexistentfield'] self.fail('Attempts to access non-existent fields should fail.') -- cgit v1.3