@@ -70,7 +70,7 @@ async def test_aiohttp_websocket_invalid_query(
7070"""
7171
7272
73- async def server_invalid_subscription (ws , path ):
73+ async def server_invalid_subscription (ws ):
7474 await WebSocketServerHelper .send_connection_ack (ws )
7575 await ws .recv ()
7676 await ws .send (invalid_query1_server_answer .format (query_id = 1 ))
@@ -108,7 +108,7 @@ async def test_aiohttp_websocket_invalid_subscription(
108108)
109109
110110
111- async def server_no_ack (ws , path ):
111+ async def server_no_ack (ws ):
112112 await ws .wait_closed ()
113113
114114
@@ -129,7 +129,7 @@ async def test_aiohttp_websocket_server_does_not_send_ack(
129129 pass
130130
131131
132- async def server_connection_error (ws , path ):
132+ async def server_connection_error (ws ):
133133 await WebSocketServerHelper .send_connection_ack (ws )
134134 result = await ws .recv ()
135135 print (f"Server received: { result } " )
@@ -158,7 +158,7 @@ async def test_aiohttp_websocket_sending_invalid_data(
158158)
159159
160160
161- async def server_invalid_payload (ws , path ):
161+ async def server_invalid_payload (ws ):
162162 await WebSocketServerHelper .send_connection_ack (ws )
163163 result = await ws .recv ()
164164 print (f"Server received: { result } " )
@@ -253,7 +253,7 @@ async def test_aiohttp_websocket_transport_protocol_errors(
253253 await session .execute (query )
254254
255255
256- async def server_without_ack (ws , path ):
256+ async def server_without_ack (ws ):
257257 # Sending something else than an ack
258258 await WebSocketServerHelper .send_complete (ws , 1 )
259259 await ws .wait_closed ()
@@ -274,7 +274,7 @@ async def test_aiohttp_websocket_server_does_not_ack(event_loop, server):
274274 pass
275275
276276
277- async def server_closing_directly (ws , path ):
277+ async def server_closing_directly (ws ):
278278 await ws .close ()
279279
280280
@@ -294,7 +294,7 @@ async def test_aiohttp_websocket_server_closing_directly(event_loop, server):
294294 pass
295295
296296
297- async def server_closing_after_ack (ws , path ):
297+ async def server_closing_after_ack (ws ):
298298 await WebSocketServerHelper .send_connection_ack (ws )
299299 await ws .close ()
300300
@@ -313,7 +313,7 @@ async def test_aiohttp_websocket_server_closing_after_ack(
313313 await session .execute (query )
314314
315315
316- async def server_sending_invalid_query_errors (ws , path ):
316+ async def server_sending_invalid_query_errors (ws ):
317317 await WebSocketServerHelper .send_connection_ack (ws )
318318 invalid_error = (
319319 '{"type":"error","id":"404","payload":'
0 commit comments