diff options
Diffstat (limited to 'tests/wpt/web-platform-tests/websockets/constructor.any.js')
-rw-r--r-- | tests/wpt/web-platform-tests/websockets/constructor.any.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/wpt/web-platform-tests/websockets/constructor.any.js b/tests/wpt/web-platform-tests/websockets/constructor.any.js index 60f5335fac5..0605d5e5efc 100644 --- a/tests/wpt/web-platform-tests/websockets/constructor.any.js +++ b/tests/wpt/web-platform-tests/websockets/constructor.any.js @@ -2,6 +2,6 @@ test(function() { var ws = new WebSocket("ws://" + __SERVER__NAME + ":" + __PORT + "/" + __PATH, - "echo", "Stray argument") + "echo", "Stray argument") assert_true(ws instanceof WebSocket, "Expected a WebSocket instance.") }, "Calling the WebSocket constructor with too many arguments should not throw.") |