diff options
author | Feng Yu <F3n67u@outlook.com> | 2022-04-16 23:28:15 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-16 17:28:15 +0200 |
commit | 32aaefd9eeea4a08eec0159f6374bfadf2bec62f (patch) | |
tree | c455e1ef56a726d95138aaedbede598db290b94a | |
parent | a87be28a46b67e53354f8ce69386057ddbb0f46c (diff) |
fix(tools/wpt): replace deprecated writeAllSync and writeAll (#14282)
-rwxr-xr-x | tools/wpt.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/wpt.ts b/tools/wpt.ts index 0563a05ce..52d57ad28 100755 --- a/tools/wpt.ts +++ b/tools/wpt.ts @@ -32,7 +32,7 @@ import { wptreport, } from "./wpt/utils.ts"; import { blue, bold, green, red, yellow } from "../test_util/std/fmt/colors.ts"; -import { writeAll, writeAllSync } from "../test_util/std/io/util.ts"; +import { writeAll, writeAllSync } from "../test_util/std/streams/conversion.ts"; import { saveExpectation } from "./wpt/utils.ts"; const command = Deno.args[0]; |