From f139a4f06a8b8191ff3a48dae24b0d07375336eb Mon Sep 17 00:00:00 2001 From: mario Date: Fri, 1 Jul 2016 08:22:50 +0200 Subject: [PATCH] pep8 --- rest_auth/tests/test_social.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest_auth/tests/test_social.py b/rest_auth/tests/test_social.py index 5db9250..cb96700 100644 --- a/rest_auth/tests/test_social.py +++ b/rest_auth/tests/test_social.py @@ -126,7 +126,7 @@ class TestSocialAuth(TestCase, BaseAPITestCase): 'token_secret': '1111222233334444' } - resp = self.post(self.tw_login_url, data=payload) + self.post(self.tw_login_url, data=payload) self.assertIn('key', self.response.json.keys()) self.assertEqual(get_user_model().objects.all().count(), users_count + 1)