Skip to content

Commit 585fccd

Browse files
authored
Fix test case unnecessarily skipped aiohttp (#3908)
1 parent 94cb9cd commit 585fccd

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

tests/websockets/test_graphql_transport_ws.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -154,15 +154,6 @@ async def test_ws_message_frame_types_cannot_be_mixed(ws_raw: WebSocketClient):
154154

155155

156156
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-
166157
test_client = http_client_class()
167158
test_client.create_app(connection_init_wait_timeout=timedelta(seconds=0))
168159

0 commit comments

Comments
 (0)