Skip to content

Commit

Permalink
fix: Fixing a broken integration test (#582)
Browse files Browse the repository at this point in the history
* fix: Fixing a broken integration test

* fix: Fixing another typo
  • Loading branch information
hiranya911 authored Oct 6, 2021
1 parent 0a11d07 commit ebf1bcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration/test_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -499,8 +499,8 @@ def test_disable_user(new_user_with_params):
def test_remove_provider(new_user_with_provider):
provider_ids = [provider.provider_id for provider in new_user_with_provider.provider_data]
assert 'google.com' in provider_ids
user = auth.update_user(new_user_with_provider, providers_to_delete=['google.com'])
assert user.uid == new_user_with_params.uid
user = auth.update_user(new_user_with_provider.uid, providers_to_delete=['google.com'])
assert user.uid == new_user_with_provider.uid
new_provider_ids = [provider.provider_id for provider in user.provider_data]
assert 'google.com' not in new_provider_ids

Expand Down

0 comments on commit ebf1bcd

Please sign in to comment.