diff options
| author | Tim Graham <timograham@gmail.com> | 2016-04-07 22:04:45 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-04-08 10:12:33 -0400 |
| commit | 92053acbb9160862c3e743a99ed8ccff8d4f8fd6 (patch) | |
| tree | 50e7fd28a650f0e2352cf94f92e5a66d28a81988 /tests/auth_tests/test_models.py | |
| parent | df8d8d4292684d6ffa7474f1e201aed486f02b53 (diff) | |
Fixed E128 flake8 warnings in tests/.
Diffstat (limited to 'tests/auth_tests/test_models.py')
| -rw-r--r-- | tests/auth_tests/test_models.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/auth_tests/test_models.py b/tests/auth_tests/test_models.py index 8f8f3ff900..975cf230af 100644 --- a/tests/auth_tests/test_models.py +++ b/tests/auth_tests/test_models.py @@ -154,8 +154,12 @@ class AbstractUserTestCase(TestCase): "html_message": None, } abstract_user = AbstractUser(email='foo@bar.com') - abstract_user.email_user(subject="Subject here", - message="This is a message", from_email="from@domain.com", **kwargs) + abstract_user.email_user( + subject="Subject here", + message="This is a message", + from_email="from@domain.com", + **kwargs + ) # Test that one message has been sent. self.assertEqual(len(mail.outbox), 1) # Verify that test email contains the correct attributes: |
