summaryrefslogtreecommitdiff
path: root/tests/wpt/runner
diff options
context:
space:
mode:
authorAsher Gomez <ashersaupingomez@gmail.com>2024-07-25 15:30:28 +1000
committerGitHub <noreply@github.com>2024-07-25 15:30:28 +1000
commit5f44148e83bb0056b7a361dd6a1bf28d11f3116d (patch)
treee73ff318a69cabedf33a962be6fa6c73e6775f3e /tests/wpt/runner
parent84b7504d0fdccc07b9f7412408c954ae07765ccb (diff)
chore: update to `std@2024.07.19` (#24715)
Diffstat (limited to 'tests/wpt/runner')
-rw-r--r--tests/wpt/runner/utils.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/wpt/runner/utils.ts b/tests/wpt/runner/utils.ts
index 988e06c09..1674419cd 100644
--- a/tests/wpt/runner/utils.ts
+++ b/tests/wpt/runner/utils.ts
@@ -1,7 +1,7 @@
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
/// FLAGS
-import { parse } from "@std/flags/mod.ts";
+import { parseArgs } from "@std/cli/parse-args";
import { join, resolve, ROOT_PATH } from "../../../tools/util.js";
export const {
@@ -15,7 +15,7 @@ export const {
["inspect-brk"]: inspectBrk,
["no-ignore"]: noIgnore,
binary,
-} = parse(Deno.args, {
+} = parseArgs(Deno.args, {
"--": true,
boolean: ["quiet", "release", "no-interactive", "inspect-brk", "no-ignore"],
string: ["json", "wptreport", "binary"],