diff options
author | Chris Knight <cknight1234@gmail.com> | 2020-06-07 14:20:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-07 09:20:33 -0400 |
commit | 3ef94c5473ac77366d009c7a7c665f695670f886 (patch) | |
tree | 0baa502ca705e9e0a38e013def65f1ab545e643b /std/io | |
parent | adffbacfe49aac480fc34e78035200ab9602443c (diff) |
refactor(std): remove testing dependencies from non-test code (#5838)
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; |