Index: LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-mismatch-protocol-header_wsh.py |
diff --git a/LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-mismatch-protocol-header_wsh.py b/LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-mismatch-protocol-header_wsh.py |
index d35c57bbca0647c218ddb55fabc688424ba72e71..89fd11d7d515c4c69fefe85d5c02179d97522e99 100644 |
--- a/LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-mismatch-protocol-header_wsh.py |
+++ b/LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-mismatch-protocol-header_wsh.py |
@@ -7,7 +7,7 @@ def web_socket_do_extra_handshake(request): |
msg += 'Upgrade: websocket\r\n' |
msg += 'Connection: Upgrade\r\n' |
msg += 'Sec-WebSocket-Accept: %s\r\n' % compute_accept(request.headers_in['Sec-WebSocket-Key'])[0] |
- msg += 'Sec-WebSocket-Protocol: MismatchProtocol\r\n' |
+ msg += 'Sec-WebSocket-Protocol: MismatchProtocol\r\n' |
msg += '\r\n' |
request.connection.write(msg) |
raise handshake.AbortedByUserException('Abort the connection') # Prevents pywebsocket from sending its own handshake message. |