diff options
Diffstat (limited to 'std/io')
| -rw-r--r-- | std/io/bufio.ts | 2 | ||||
| -rw-r--r-- | std/io/ioutil.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/std/io/bufio.ts b/std/io/bufio.ts index 5c005672a..4ebec13e1 100644 --- a/std/io/bufio.ts +++ b/std/io/bufio.ts @@ -7,7 +7,7 @@ type Reader = Deno.Reader; type Writer = Deno.Writer; type WriterSync = Deno.WriterSync; import { charCode, copyBytes } from "./util.ts"; -import { assert } from "../testing/asserts.ts"; +import { assert } from "../_util/assert.ts"; const DEFAULT_BUF_SIZE = 4096; const MIN_BUF_SIZE = 16; diff --git a/std/io/ioutil.ts b/std/io/ioutil.ts index aff9f05e2..3d9e72b56 100644 --- a/std/io/ioutil.ts +++ b/std/io/ioutil.ts @@ -2,7 +2,7 @@ import { BufReader } from "./bufio.ts"; type Reader = Deno.Reader; type Writer = Deno.Writer; -import { assert } from "../testing/asserts.ts"; +import { assert } from "../_util/assert.ts"; const DEFAULT_BUFFER_SIZE = 32 * 1024; |
