| Index: LayoutTests/http/tests/websocket/tests/hybi/invalid-continuation_wsh.py
|
| diff --git a/LayoutTests/http/tests/websocket/tests/hybi/invalid-continuation_wsh.py b/LayoutTests/http/tests/websocket/tests/hybi/invalid-continuation_wsh.py
|
| deleted file mode 100644
|
| index 70e0296f56c4ff8951bf7a5fe470860a23e51963..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/http/tests/websocket/tests/hybi/invalid-continuation_wsh.py
|
| +++ /dev/null
|
| @@ -1,16 +0,0 @@
|
| -from mod_pywebsocket import common
|
| -from mod_pywebsocket import stream
|
| -
|
| -def web_socket_do_extra_handshake(request):
|
| - pass
|
| -
|
| -
|
| -def web_socket_transfer_data(request):
|
| - payload1 = 'Invalid continuation frame to be ignored.'
|
| - payload2 = 'Valid frame after closing should be disposed.'
|
| - request.connection.write(stream.create_header(common.OPCODE_CONTINUATION,
|
| - len(payload1),
|
| - 1, 0, 0, 0, 0) + payload1)
|
| - request.connection.write(stream.create_header(common.OPCODE_TEXT,
|
| - len(payload2),
|
| - 1, 0, 0, 0, 0) + payload2)
|
|
|