Index: LayoutTests/http/tests/websocket/tests/hybi/long-control-frame_wsh.py |
diff --git a/LayoutTests/http/tests/websocket/tests/hybi/long-control-frame_wsh.py b/LayoutTests/http/tests/websocket/tests/hybi/long-control-frame_wsh.py |
deleted file mode 100644 |
index 41f48a35b9ebd9a82e6908d625f4d17a1d2cd0c0..0000000000000000000000000000000000000000 |
--- a/LayoutTests/http/tests/websocket/tests/hybi/long-control-frame_wsh.py |
+++ /dev/null |
@@ -1,12 +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): |
- # All control frames must have a payload length of 125 bytes or less. |
- message = 'X' * 126 |
- request.connection.write(stream.create_text_frame(message, opcode=common.OPCODE_PING, fin=1)) |