Skip to content

Commit ab07f34

Browse files
committed
- Fixed end of file for test_enterprise_managed_auth_client.py.
1 parent f3d2f53 commit ab07f34

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

tests/client/auth/test_enterprise_managed_auth_client.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1575,9 +1575,7 @@ async def test_default_id_jag_expiry_constant(sample_id_token: str, sample_id_ja
15751575

15761576

15771577
@pytest.mark.anyio
1578-
async def test_exchange_token_without_oauth_metadata(
1579-
sample_id_token: str, sample_id_jag: str, mock_token_storage: Any
1580-
):
1578+
async def test_exchange_token_without_oauth_metadata(sample_id_token: str, sample_id_jag: str, mock_token_storage: Any):
15811579
"""Test token exchange when oauth_metadata is not set.
15821580
15831581
This tests the scenario where OAuth metadata discovery hasn't happened yet.
@@ -1624,6 +1622,3 @@ async def test_exchange_token_without_oauth_metadata(
16241622
# Verify the configured audience was used (no override since metadata is None)
16251623
call_args = mock_client.post.call_args
16261624
assert call_args[1]["data"]["audience"] == "https://auth.configured.example/"
1627-
1628-
1629-

0 commit comments

Comments
 (0)