diff options
Diffstat (limited to 'cli/tests/testdata')
-rw-r--r-- | cli/tests/testdata/cat.ts | 2 | ||||
-rw-r--r-- | cli/tests/testdata/echo_server.ts | 2 | ||||
-rw-r--r-- | cli/tests/testdata/run/textproto.ts | 4 | ||||
-rw-r--r-- | cli/tests/testdata/run/tls_connecttls.js | 2 | ||||
-rw-r--r-- | cli/tests/testdata/test/ops_sanitizer_missing_details.ts | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/cli/tests/testdata/cat.ts b/cli/tests/testdata/cat.ts index 6d8f150e3..c2a500b3e 100644 --- a/cli/tests/testdata/cat.ts +++ b/cli/tests/testdata/cat.ts @@ -1,4 +1,4 @@ -import { copy } from "../../../test_util/std/io/util.ts"; +import { copy } from "../../../test_util/std/streams/copy.ts"; async function main() { for (let i = 1; i < Deno.args.length; i++) { const filename = Deno.args[i]; diff --git a/cli/tests/testdata/echo_server.ts b/cli/tests/testdata/echo_server.ts index b23867cdd..658b07374 100644 --- a/cli/tests/testdata/echo_server.ts +++ b/cli/tests/testdata/echo_server.ts @@ -1,4 +1,4 @@ -import { copy } from "../../../test_util/std/io/util.ts"; +import { copy } from "../../../test_util/std/streams/copy.ts"; const addr = Deno.args[0] || "0.0.0.0:4544"; const [hostname, port] = addr.split(":"); const listener = Deno.listen({ hostname, port: Number(port) }); diff --git a/cli/tests/testdata/run/textproto.ts b/cli/tests/testdata/run/textproto.ts index 7ddb79717..62c4f5979 100644 --- a/cli/tests/testdata/run/textproto.ts +++ b/cli/tests/testdata/run/textproto.ts @@ -17,8 +17,8 @@ import type { BufReader, ReadLineResult, -} from "../../../../test_util/std/io/buffer.ts"; -import { concat } from "../../../../test_util/std/bytes/mod.ts"; +} from "../../../../test_util/std/io/buf_reader.ts"; +import { concat } from "../../../../test_util/std/bytes/concat.ts"; // Constants created for DRY const CHAR_SPACE: number = " ".charCodeAt(0); diff --git a/cli/tests/testdata/run/tls_connecttls.js b/cli/tests/testdata/run/tls_connecttls.js index aea60151a..7c03856cb 100644 --- a/cli/tests/testdata/run/tls_connecttls.js +++ b/cli/tests/testdata/run/tls_connecttls.js @@ -3,7 +3,7 @@ import { assert, assertEquals, } from "../../../../test_util/std/testing/asserts.ts"; -import { BufReader, BufWriter } from "../../../../test_util/std/io/buffer.ts"; +import { BufReader, BufWriter } from "../../../../test_util/std/io/mod.ts"; import { TextProtoReader } from "./textproto.ts"; const encoder = new TextEncoder(); diff --git a/cli/tests/testdata/test/ops_sanitizer_missing_details.ts b/cli/tests/testdata/test/ops_sanitizer_missing_details.ts index 406773129..e3b07d77a 100644 --- a/cli/tests/testdata/test/ops_sanitizer_missing_details.ts +++ b/cli/tests/testdata/test/ops_sanitizer_missing_details.ts @@ -1,6 +1,6 @@ // https://github.com/denoland/deno/issues/13729 // https://github.com/denoland/deno/issues/13938 -import { writeAll } from "../../../../test_util/std/io/util.ts"; +import { writeAll } from "../../../../test_util/std/streams/write_all.ts"; Deno.test("test 1", { permissions: { write: true, read: true } }, async () => { const tmpFile = await Deno.makeTempFile(); |