We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94cb9cd commit 585fccdCopy full SHA for 585fccd
tests/websockets/test_graphql_transport_ws.py
@@ -154,15 +154,6 @@ async def test_ws_message_frame_types_cannot_be_mixed(ws_raw: WebSocketClient):
154
155
156
async def test_connection_init_timeout(http_client_class: type[HttpClient]):
157
- with contextlib.suppress(ImportError):
158
- from tests.http.clients.aiohttp import AioHttpClient
159
-
160
- if http_client_class == AioHttpClient:
161
- pytest.skip(
162
- "Closing a AIOHTTP WebSocket from a "
163
- "task currently doesn't work as expected"
164
- )
165
166
test_client = http_client_class()
167
test_client.create_app(connection_init_wait_timeout=timedelta(seconds=0))
168
0 commit comments