mirror of
https://github.com/django/django.git
synced 2025-08-03 10:34:04 +00:00
Updated test assertions that have been deprecated by the move to unittest2. In summary, this means:
assert_ -> assertTrue assertEquals -> assertEqual failUnless -> assertTrue For full details, see http://www.voidspace.org.uk/python/articles/unittest2.shtml#deprecations git-svn-id: http://code.djangoproject.com/svn/django/trunk@15728 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
b7c41c1fbb
commit
afd040d4d3
110 changed files with 1197 additions and 1197 deletions
|
@ -324,10 +324,10 @@ class TypeCoercionTests(test.TestCase):
|
|||
|
||||
"""
|
||||
def test_lookup_integer_in_charfield(self):
|
||||
self.assertEquals(Post.objects.filter(title=9).count(), 0)
|
||||
self.assertEqual(Post.objects.filter(title=9).count(), 0)
|
||||
|
||||
def test_lookup_integer_in_textfield(self):
|
||||
self.assertEquals(Post.objects.filter(body=24).count(), 0)
|
||||
self.assertEqual(Post.objects.filter(body=24).count(), 0)
|
||||
|
||||
class FileFieldTests(unittest.TestCase):
|
||||
def test_clearable(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue