summaryrefslogtreecommitdiff
path: root/std/ws/test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/ws/test.ts')
-rw-r--r--std/ws/test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/ws/test.ts b/std/ws/test.ts
index 9b7e7a710..cef4ff8ff 100644
--- a/std/ws/test.ts
+++ b/std/ws/test.ts
@@ -327,7 +327,7 @@ Deno.test({
assertEquals(decode(second.payload), "second");
assertEquals(ping.opcode, OpCode.Ping);
assertEquals(third.opcode, OpCode.BinaryFrame);
- assertEquals(bytes.equal(third.payload, new Uint8Array([3])), true);
+ assertEquals(bytes.equals(third.payload, new Uint8Array([3])), true);
},
});