diff options
Diffstat (limited to 'io/writers_test.ts')
-rw-r--r-- | io/writers_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/io/writers_test.ts b/io/writers_test.ts index 01388497c..94c58417d 100644 --- a/io/writers_test.ts +++ b/io/writers_test.ts @@ -1,8 +1,8 @@ +const { copy } = Deno; import { assert, test } from "../testing/mod.ts"; import { StringWriter } from "./writers.ts"; import { StringReader } from "./readers.ts"; import { copyN } from "./ioutil.ts"; -import { copy } from "deno"; test(async function ioStringWriter() { const w = new StringWriter("base"); |