Skip to content

Commit 8411cf6

Browse files
committed
chore: fix access tokens test
1 parent 2d63eed commit 8411cf6

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/api_resources/test_access_tokens.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,7 @@ def test_streaming_response_create(self, client: Finch) -> None:
8989

9090

9191
class TestAsyncAccessTokens:
92-
parametrize = pytest.mark.parametrize(
93-
"async_client", [False, True, {"http_client": "aiohttp"}], indirect=True, ids=["loose", "strict", "aiohttp"]
94-
)
92+
parametrize = pytest.mark.parametrize("async_client", [False, True], indirect=True, ids=["loose", "strict"])
9593

9694
@parametrize
9795
async def test_method_create(self, async_client: AsyncFinch) -> None:

0 commit comments

Comments
 (0)