Skip to content

Commit

Permalink
chore: fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
kaustavb12 committed Feb 3, 2025
1 parent c88075d commit 0858f89
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions common/djangoapps/third_party_auth/api/tests/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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}[email protected]']
}),
)
Expand Down

0 comments on commit 0858f89

Please sign in to comment.