From 073dd3e76513b9b11ceda7de75e8ca9550783f79 Mon Sep 17 00:00:00 2001 From: mario Date: Tue, 5 Jan 2016 15:09:31 +0100 Subject: [PATCH] Fixed flake8 warnings --- rest_auth/tests/test_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest_auth/tests/test_api.py b/rest_auth/tests/test_api.py index b64cf8c..bb15e01 100644 --- a/rest_auth/tests/test_api.py +++ b/rest_auth/tests/test_api.py @@ -225,7 +225,7 @@ class APITestCase1(TestCase, BaseAPITestCase): self.post(self.login_url, data=payload, status_code=200) def test_password_reset_with_email_in_different_case(self): - user = get_user_model().objects.create_user(self.USERNAME, self.EMAIL.lower(), self.PASS) + get_user_model().objects.create_user(self.USERNAME, self.EMAIL.lower(), self.PASS) # call password reset in upper case mail_count = len(mail.outbox)