mirror of
https://github.com/Hopiu/django.git
synced 2026-04-20 23:11:06 +00:00
Changed assertEquals -> assertEqual.
This commit is contained in:
parent
5442fe46da
commit
fffb55860e
1 changed files with 2 additions and 2 deletions
|
|
@ -2861,5 +2861,5 @@ class Ticket18785Tests(unittest.TestCase):
|
|||
).filter(
|
||||
name='something', creator__extra__isnull=True
|
||||
).order_by()
|
||||
self.assertEquals(1, str(qs.query).count('INNER JOIN'))
|
||||
self.assertEquals(0, str(qs.query).count('OUTER JOIN'))
|
||||
self.assertEqual(1, str(qs.query).count('INNER JOIN'))
|
||||
self.assertEqual(0, str(qs.query).count('OUTER JOIN'))
|
||||
|
|
|
|||
Loading…
Reference in a new issue