summaryrefslogtreecommitdiff
path: root/tests/createsuperuser/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/createsuperuser/tests.py')
-rw-r--r--tests/createsuperuser/tests.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/createsuperuser/tests.py b/tests/createsuperuser/tests.py
index 08f2ec5322..d5c891c118 100644
--- a/tests/createsuperuser/tests.py
+++ b/tests/createsuperuser/tests.py
@@ -24,7 +24,10 @@ class MultiDBChangepasswordManagementCommandTestCase(TestCase):
command.execute(username="joe", database='other', stdout=out)
command_output = out.getvalue().strip()
- self.assertEqual(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"))