File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff 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
6261def 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
7674async 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
105102async 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
You can’t perform that action at this time.
0 commit comments