Skip to content

Commit 670f069

Browse files
committed
chore: Fix test
1 parent eda001e commit 670f069

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

tests/api_resources/test_auth_wait.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ def test_wait_for_completion_raises_value_error_for_empty_authorization_id(sync_
5858
auth.wait_for_completion(auth_response)
5959

6060

61-
@parametrize_scopes
6261
def test_wait_for_completion_calls_status_with_auth_id(sync_auth_resource: AuthResource) -> None:
6362
auth = sync_auth_resource
6463
auth.status = Mock(return_value=AuthorizationResponse(status="completed")) # type: ignore
@@ -72,7 +71,6 @@ def test_wait_for_completion_calls_status_with_auth_id(sync_auth_resource: AuthR
7271

7372

7473
@pytest.mark.asyncio
75-
@parametrize_scopes
7674
async def test_async_wait_for_completion_calls_status_from_auth_response(
7775
async_auth_resource: AsyncAuthResource, scopes: Optional[List[str]]
7876
) -> None:
@@ -101,7 +99,6 @@ async def test_async_wait_for_completion_raises_value_error_for_empty_authorizat
10199

102100

103101
@pytest.mark.asyncio
104-
@parametrize_scopes
105102
async def test_async_wait_for_completion_calls_status_with_auth_id(async_auth_resource: AsyncAuthResource) -> None:
106103
auth = async_auth_resource
107104
auth.status = AsyncMock(return_value=AuthorizationResponse(status="completed")) # type: ignore

0 commit comments

Comments
 (0)