summaryrefslogtreecommitdiff
path: root/std/io/writers_test.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-04-28 12:33:09 +0200
committerGitHub <noreply@github.com>2020-04-28 12:33:09 +0200
commit8feb30e3258ed9690eb850e3ca22842b260a0403 (patch)
tree6805bfe3df675c2c7f6a379093061c6b73d8365a /std/io/writers_test.ts
parentb508e845671de9351c3f51755647371d76128d29 (diff)
BREAKING: remove overload of Deno.test() (#4951)
This commit removes overload of Deno.test() that accepted named function.
Diffstat (limited to 'std/io/writers_test.ts')
-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 24f2f3b3f..a50f8b3d1 100644
--- a/std/io/writers_test.ts
+++ b/std/io/writers_test.ts
@@ -4,7 +4,7 @@ import { StringWriter } from "./writers.ts";
import { StringReader } from "./readers.ts";
import { copyN } from "./ioutil.ts";
-test(async function ioStringWriter(): Promise<void> {
+test("ioStringWriter", async function (): Promise<void> {
const w = new StringWriter("base");
const r = new StringReader("0123456789");
await copyN(r, w, 4);