@@ -70,7 +70,7 @@ async def test_aiohttp_websocket_invalid_query(
70
70
"""
71
71
72
72
73
- async def server_invalid_subscription (ws , path ):
73
+ async def server_invalid_subscription (ws ):
74
74
await WebSocketServerHelper .send_connection_ack (ws )
75
75
await ws .recv ()
76
76
await ws .send (invalid_query1_server_answer .format (query_id = 1 ))
@@ -108,7 +108,7 @@ async def test_aiohttp_websocket_invalid_subscription(
108
108
)
109
109
110
110
111
- async def server_no_ack (ws , path ):
111
+ async def server_no_ack (ws ):
112
112
await ws .wait_closed ()
113
113
114
114
@@ -129,7 +129,7 @@ async def test_aiohttp_websocket_server_does_not_send_ack(
129
129
pass
130
130
131
131
132
- async def server_connection_error (ws , path ):
132
+ async def server_connection_error (ws ):
133
133
await WebSocketServerHelper .send_connection_ack (ws )
134
134
result = await ws .recv ()
135
135
print (f"Server received: { result } " )
@@ -158,7 +158,7 @@ async def test_aiohttp_websocket_sending_invalid_data(
158
158
)
159
159
160
160
161
- async def server_invalid_payload (ws , path ):
161
+ async def server_invalid_payload (ws ):
162
162
await WebSocketServerHelper .send_connection_ack (ws )
163
163
result = await ws .recv ()
164
164
print (f"Server received: { result } " )
@@ -253,7 +253,7 @@ async def test_aiohttp_websocket_transport_protocol_errors(
253
253
await session .execute (query )
254
254
255
255
256
- async def server_without_ack (ws , path ):
256
+ async def server_without_ack (ws ):
257
257
# Sending something else than an ack
258
258
await WebSocketServerHelper .send_complete (ws , 1 )
259
259
await ws .wait_closed ()
@@ -274,7 +274,7 @@ async def test_aiohttp_websocket_server_does_not_ack(event_loop, server):
274
274
pass
275
275
276
276
277
- async def server_closing_directly (ws , path ):
277
+ async def server_closing_directly (ws ):
278
278
await ws .close ()
279
279
280
280
@@ -294,7 +294,7 @@ async def test_aiohttp_websocket_server_closing_directly(event_loop, server):
294
294
pass
295
295
296
296
297
- async def server_closing_after_ack (ws , path ):
297
+ async def server_closing_after_ack (ws ):
298
298
await WebSocketServerHelper .send_connection_ack (ws )
299
299
await ws .close ()
300
300
@@ -313,7 +313,7 @@ async def test_aiohttp_websocket_server_closing_after_ack(
313
313
await session .execute (query )
314
314
315
315
316
- async def server_sending_invalid_query_errors (ws , path ):
316
+ async def server_sending_invalid_query_errors (ws ):
317
317
await WebSocketServerHelper .send_connection_ack (ws )
318
318
invalid_error = (
319
319
'{"type":"error","id":"404","payload":'
0 commit comments