Index: LayoutTests/http/tests/websocket/tests/hybi/workers/resources/no-onmessage-in-sync-op_wsh.py |
diff --git a/LayoutTests/http/tests/websocket/tests/hybi/workers/resources/no-onmessage-in-sync-op_wsh.py b/LayoutTests/http/tests/websocket/tests/hybi/workers/resources/no-onmessage-in-sync-op_wsh.py |
deleted file mode 100644 |
index 7aee062e61228e619f3dd87a09c33e487e88d6e4..0000000000000000000000000000000000000000 |
--- a/LayoutTests/http/tests/websocket/tests/hybi/workers/resources/no-onmessage-in-sync-op_wsh.py |
+++ /dev/null |
@@ -1,18 +0,0 @@ |
-from mod_pywebsocket import handshake |
-from mod_pywebsocket import msgutil |
- |
- |
-def web_socket_do_extra_handshake(request): |
- pass |
- |
- |
-def web_socket_transfer_data(request): |
- # Send three messages, and then wait for three messages. |
- msgutil.send_message(request, '1') |
- msgutil.send_message(request, '2') |
- msgutil.send_message(request, '3') |
- |
- for expected in (u'1', u'2', u'3'): |
- message = msgutil.receive_message(request) |
- if type(message) != unicode or message != expected: |
- raise handshake.AbortedByUserException('Abort the connection') |