Index: LayoutTests/http/tests/websocket/tests/hybi/long-invalid-header_wsh.py |
diff --git a/LayoutTests/http/tests/websocket/tests/hybi/long-invalid-header_wsh.py b/LayoutTests/http/tests/websocket/tests/hybi/long-invalid-header_wsh.py |
deleted file mode 100644 |
index 9201e90f31b15e425b59d7edef61738bfbe47fb5..0000000000000000000000000000000000000000 |
--- a/LayoutTests/http/tests/websocket/tests/hybi/long-invalid-header_wsh.py |
+++ /dev/null |
@@ -1,13 +0,0 @@ |
-from mod_pywebsocket import handshake |
- |
- |
-def web_socket_do_extra_handshake(request): |
- msg = "HTTP/1.1 101 WebSocket Protocol Handshake\r\n" |
- msg += ("p" * 1024) + "\r\n" |
- msg += "\r\n" |
- request.connection.write(msg) |
- raise handshake.AbortedByUserException("Abort the connection") # Prevents pywebsocket from sending its own handshake message. |
- |
- |
-def web_socket_transfer_data(request): |
- pass |