From 0858f89161f6c66fd9ba4286ff70b6d0d5192141 Mon Sep 17 00:00:00 2001 From: Kaustav Banerjee Date: Mon, 3 Feb 2025 17:28:38 +0530 Subject: [PATCH] chore: fix lint issues --- .../third_party_auth/api/tests/test_views.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/common/djangoapps/third_party_auth/api/tests/test_views.py b/common/djangoapps/third_party_auth/api/tests/test_views.py index 1e0ba16e77f..0f668da2656 100644 --- a/common/djangoapps/third_party_auth/api/tests/test_views.py +++ b/common/djangoapps/third_party_auth/api/tests/test_views.py @@ -396,11 +396,11 @@ def setUp(self): # pylint: disable=arguments-differ google = self.configure_google_provider(enabled=True) staff_user = UserFactory.create( - username=STAFF_USERNAME, - is_staff=True, - is_superuser=True, - ) - + username=STAFF_USERNAME, + is_staff=True, + is_superuser=True, + ) + test_user = UserFactory.create( username=ALICE_USERNAME, email=f'{ALICE_USERNAME}@example.com', @@ -424,7 +424,7 @@ def setUp(self): # pylint: disable=arguments-differ ({'username_or_email': ALICE_USERNAME, 'uid': 'abcd'}, 404, {'error_message': f'User {ALICE_USERNAME} does not have a social auth record with UID abcd.'}), ({'username_or_email': ALICE_USERNAME, 'uid': f'{ALICE_USERNAME}@gmail.com'}, 200, { "username": ALICE_USERNAME, - "email":f'{ALICE_USERNAME}@example.com', + "email": f'{ALICE_USERNAME}@example.com', "uid": [f'{ALICE_USERNAME}1@gmail.com'] }), )