From 0b37a79060e48c1fe6936c6e642044e9b20b9bb5 Mon Sep 17 00:00:00 2001 From: Yosi Pramajaya Date: Sun, 6 Dec 2020 21:51:13 +0700 Subject: BREAKING(std/bytes): Adjust APIs based on std-wg discussion (#8612) --- std/ws/test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'std/ws/test.ts') 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); }, }); -- cgit v1.2.3