summaryrefslogtreecommitdiff
path: root/tests/createsuperuser
diff options
context:
space:
mode:
authorDražen Odobašić <dodobas@candela-it.com>2015-09-11 19:33:12 -0400
committerTim Graham <timograham@gmail.com>2015-09-12 11:40:50 -0400
commitb1e33ceceda1e75ff68c7deed8f6659683a195d3 (patch)
treee4e446f69194f2dc3c9c7ee3ecf48290ea8d4d31 /tests/createsuperuser
parent84b0a8d2aad042fb573df5055b6153770d0929ac (diff)
Fixed #23395 -- Limited line lengths to 119 characters.
Diffstat (limited to 'tests/createsuperuser')
-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"))