summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/run/websocket_test.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2023-04-22 11:17:31 +0200
committerGitHub <noreply@github.com>2023-04-22 11:17:31 +0200
commit068228cb454d14a6f5943061a5a6569b9e395e23 (patch)
tree4b62ba7df771ac6dc32c70273e397e863f84dc05 /cli/tests/testdata/run/websocket_test.ts
parenta615eb3b56545960ec9684991442dd34a8b2abfc (diff)
refactor: rewrite tests to "fastwebsockets" crate (#18781)
Migrating off of `tokio-tungstenite` crate. --------- Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com>
Diffstat (limited to 'cli/tests/testdata/run/websocket_test.ts')
-rw-r--r--cli/tests/testdata/run/websocket_test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/testdata/run/websocket_test.ts b/cli/tests/testdata/run/websocket_test.ts
index a9dc34ad1..27bc5adf9 100644
--- a/cli/tests/testdata/run/websocket_test.ts
+++ b/cli/tests/testdata/run/websocket_test.ts
@@ -161,7 +161,7 @@ Deno.test("websocket error", async () => {
assert(err instanceof ErrorEvent);
// Error message got changed because we don't use warp in test_util
- assertEquals(err.message, "UnexpectedEof: tls handshake eof");
+ assertEquals(err.message, "InvalidData: received corrupt message");
promise1.resolve();
};
await promise1;