mirror of https://github.com/django/django.git
Switched to use assertEqual instead of assertEquals.
This commit is contained in:
parent
87fed94440
commit
f2e4d39a71
|
@ -573,7 +573,7 @@ class OtherModelTests(IsolatedModelsTestCase):
|
||||||
class Meta:
|
class Meta:
|
||||||
ordering = ['order']
|
ordering = ['order']
|
||||||
|
|
||||||
self.assertEquals(Model.check(), [])
|
self.assertEqual(Model.check(), [])
|
||||||
|
|
||||||
def test_just_order_with_respect_to_no_errors(self):
|
def test_just_order_with_respect_to_no_errors(self):
|
||||||
class Question(models.Model):
|
class Question(models.Model):
|
||||||
|
@ -585,7 +585,7 @@ class OtherModelTests(IsolatedModelsTestCase):
|
||||||
class Meta:
|
class Meta:
|
||||||
order_with_respect_to = 'question'
|
order_with_respect_to = 'question'
|
||||||
|
|
||||||
self.assertEquals(Answer.check(), [])
|
self.assertEqual(Answer.check(), [])
|
||||||
|
|
||||||
def test_ordering_with_order_with_respect_to(self):
|
def test_ordering_with_order_with_respect_to(self):
|
||||||
class Question(models.Model):
|
class Question(models.Model):
|
||||||
|
|
Loading…
Reference in New Issue