mirror of
https://github.com/django/django.git
synced 2025-08-04 10:59:45 +00:00
Removed references to the deprecated assertRaisesRegexp method.
This commit is contained in:
parent
5b9470efd8
commit
68ef44c565
4 changed files with 14 additions and 11 deletions
|
@ -384,7 +384,7 @@ class ExpressionsNumericTests(TestCase):
|
|||
self.assertEqual(Number.objects.get(pk=n.pk).float, Approximate(256.900, places=3))
|
||||
|
||||
def test_incorrect_field_expression(self):
|
||||
with self.assertRaisesRegexp(FieldError, "Cannot resolve keyword u?'nope' into field.*"):
|
||||
with six.assertRaisesRegex(self, FieldError, "Cannot resolve keyword u?'nope' into field.*"):
|
||||
list(Employee.objects.filter(firstname=F('nope')))
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue