diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2021-08-12 13:39:27 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-12 10:09:27 +0200 |
commit | b1799e67715b003d8b8ec0648151d1c3b77feb0a (patch) | |
tree | 50b8ba32e437f40a06aae9569e6cef18f36f103d | |
parent | 57aea228e85b0c0d8f18f34ff0ade4a68812c391 (diff) |
chore(tools): use local std in wpt utils (#11644)
-rw-r--r-- | tools/wpt/utils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/wpt/utils.ts b/tools/wpt/utils.ts index 1f76ff128..1a7a682be 100644 --- a/tools/wpt/utils.ts +++ b/tools/wpt/utils.ts @@ -1,7 +1,7 @@ // Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. /// FLAGS -import { parse } from "https://deno.land/std@0.84.0/flags/mod.ts"; +import { parse } from "../../test_util/std/flags/mod.ts"; import { join, resolve, ROOT_PATH } from "../util.js"; export const { |