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)