Skip to content

Commit a4e6739

Browse files
committed
fix formatting
1 parent 3c068f1 commit a4e6739

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

tests/test_user_management.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -347,12 +347,14 @@ def test_authorization_url_has_expected_query_params_with_screen_hint(self):
347347
def test_authorization_url_has_expected_query_params_with_provider_scopes(self):
348348
provider = "GoogleOAuth"
349349
provider_scopes = [
350-
"https://www.googleapis.com/auth/calendar",
351-
"https://www.googleapis.com/auth/admin.directory.group",
352-
]
350+
"https://www.googleapis.com/auth/calendar",
351+
"https://www.googleapis.com/auth/admin.directory.group",
352+
]
353353
redirect_uri = "https://localhost/auth/callback"
354354
authorization_url = self.user_management.get_authorization_url(
355-
provider=provider, provider_scopes=provider_scopes, redirect_uri=redirect_uri
355+
provider=provider,
356+
provider_scopes=provider_scopes,
357+
redirect_uri=redirect_uri,
356358
)
357359

358360
parsed_url = urlparse(authorization_url)

0 commit comments

Comments
 (0)