mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Removed all usages of deprecated TestCase methods (self.fail*). This removed most of the Warnings emitted (with -Wall) during the test suite.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14803 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
6770c36262
commit
5bc0ec4ec4
30 changed files with 386 additions and 379 deletions
|
@ -171,6 +171,6 @@ class SignalTests(TestCase):
|
|||
signals.post_save.connect(sender=Person, receiver=b)
|
||||
p = Person.objects.create(first_name='John', last_name='Smith')
|
||||
|
||||
self.failUnless(a._run)
|
||||
self.failUnless(b._run)
|
||||
self.assertTrue(a._run)
|
||||
self.assertTrue(b._run)
|
||||
self.assertEqual(signals.post_save.receivers, [])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue