summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--std/io/writers_test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/io/writers_test.ts b/std/io/writers_test.ts
index 13b95a8d5..ef4283352 100644
--- a/std/io/writers_test.ts
+++ b/std/io/writers_test.ts
@@ -12,7 +12,7 @@ Deno.test("ioStringWriter", async function (): Promise<void> {
assertEquals(w.toString(), "base0123456789");
});
-test("ioStringWriterSync", function (): void {
+Deno.test("ioStringWriterSync", function (): void {
const encoder = new TextEncoder();
const w = new StringWriter("");
w.writeSync(encoder.encode("deno"));