Skip to content

Commit

Permalink
chore: update deno's test imports
Browse files Browse the repository at this point in the history
Signed-off-by: Okiki <okikio.dev@gmail.com>
  • Loading branch information
okikio committed Mar 3, 2024
1 parent f423425 commit bd85f12
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/iterable_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.208.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std/assert/assert_equals.ts";
import { getIterableStream } from "../iterable.ts";

Deno.test("getIterableStream - converts ReadableStream into async iterable", async () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/mod_bench.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Deno.bench("asCodePoints Array - benchmark", async () => {
const iterable = (async function* () {
yield new Uint8Array([0x61, 0xC3, 0xA9, 0xE0, 0xA4, 0xB9, 0xF0, 0x9F, 0x98, 0x82]);
})();
const result: number[] = await asCodePointsArray(iterable);
await asCodePointsArray(iterable);
});

Deno.bench("asCodePoints Iterator - benchmark", async () => {
Expand Down

0 comments on commit bd85f12

Please sign in to comment.