mirror of https://github.com/django/django.git
[1.5.x] assertEquals -> assertEqual
This commit is contained in:
parent
a2eb219556
commit
dd2a512f68
tests/regressiontests/test_runner
|
@ -337,7 +337,7 @@ class AliasedDatabaseTest(unittest.TestCase):
|
|||
old_config = runner.setup_databases()
|
||||
runner.teardown_databases(old_config)
|
||||
|
||||
self.assertEquals(destroyed_names.count('dbname'), 1)
|
||||
self.assertEqual(destroyed_names.count('dbname'), 1)
|
||||
finally:
|
||||
DatabaseCreation.create_test_db = old_create_test_db
|
||||
DatabaseCreation.destroy_test_db = old_destroy_test_db
|
||||
|
|
Loading…
Reference in New Issue