diff options
Diffstat (limited to 'tests/regressiontests/createsuperuser/tests.py')
| -rw-r--r-- | tests/regressiontests/createsuperuser/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/createsuperuser/tests.py b/tests/regressiontests/createsuperuser/tests.py index 4fdb5923ab..1c1bb0ed38 100644 --- a/tests/regressiontests/createsuperuser/tests.py +++ b/tests/regressiontests/createsuperuser/tests.py @@ -28,7 +28,7 @@ class MultiDBChangepasswordManagementCommandTestCase(TestCase): command.execute("joe", database='other', stdout=self.stdout) command_output = self.stdout.getvalue().strip() - self.assertEquals(command_output, "Changing password for user 'joe'\nPassword changed successfully for user 'joe'") + self.assertEqual(command_output, "Changing password for user 'joe'\nPassword changed successfully for user 'joe'") self.assertTrue(models.User.objects.using('other').get(username="joe").check_password("not qwerty")) |
