diff options
Diffstat (limited to 'flags')
| -rwxr-xr-x | flags/tests/all_bool.ts | 2 | ||||
| -rwxr-xr-x | flags/tests/bool.ts | 2 | ||||
| -rwxr-xr-x | flags/tests/dash.ts | 2 | ||||
| -rwxr-xr-x | flags/tests/default_bool.ts | 2 | ||||
| -rwxr-xr-x | flags/tests/dotted.ts | 2 | ||||
| -rwxr-xr-x | flags/tests/kv_short.ts | 2 | ||||
| -rwxr-xr-x | flags/tests/long.ts | 2 | ||||
| -rwxr-xr-x | flags/tests/num.ts | 2 | ||||
| -rw-r--r-- | flags/tests/parse.ts | 2 | ||||
| -rwxr-xr-x | flags/tests/short.ts | 2 | ||||
| -rwxr-xr-x | flags/tests/stop_early.ts | 2 | ||||
| -rwxr-xr-x | flags/tests/unknown.ts | 2 | ||||
| -rwxr-xr-x | flags/tests/whitespace.ts | 2 |
13 files changed, 13 insertions, 13 deletions
diff --git a/flags/tests/all_bool.ts b/flags/tests/all_bool.ts index 879de5cc0..2e0bba4ce 100755 --- a/flags/tests/all_bool.ts +++ b/flags/tests/all_bool.ts @@ -1,4 +1,4 @@ -import { test, assertEqual } from "https://deno.land/x/testing/testing.ts"; +import { test, assertEqual } from "../../testing/mod.ts"; import { parse } from "../index.ts"; // flag boolean true (default all --args to boolean) diff --git a/flags/tests/bool.ts b/flags/tests/bool.ts index ee4f5e1c3..5d135028e 100755 --- a/flags/tests/bool.ts +++ b/flags/tests/bool.ts @@ -1,4 +1,4 @@ -import { test, assertEqual } from "https://deno.land/x/testing/testing.ts"; +import { test, assertEqual } from "../../testing/mod.ts"; import { parse } from "../index.ts"; test(function flagBooleanDefaultFalse() { diff --git a/flags/tests/dash.ts b/flags/tests/dash.ts index 2008cce43..f8cec6ef7 100755 --- a/flags/tests/dash.ts +++ b/flags/tests/dash.ts @@ -1,4 +1,4 @@ -import { test, assertEqual } from "https://deno.land/x/testing/testing.ts"; +import { test, assertEqual } from "../../testing/mod.ts"; import { parse } from "../index.ts"; test(function hyphen() { diff --git a/flags/tests/default_bool.ts b/flags/tests/default_bool.ts index b43c52e8d..8cf6a720b 100755 --- a/flags/tests/default_bool.ts +++ b/flags/tests/default_bool.ts @@ -1,4 +1,4 @@ -import { test, assertEqual } from "https://deno.land/x/testing/testing.ts"; +import { test, assertEqual } from "../../testing/mod.ts"; import { parse } from "../index.ts"; test(function booleanDefaultTrue() { diff --git a/flags/tests/dotted.ts b/flags/tests/dotted.ts index 03f72dc83..94867abb2 100755 --- a/flags/tests/dotted.ts +++ b/flags/tests/dotted.ts @@ -1,4 +1,4 @@ -import { test, assertEqual } from "https://deno.land/x/testing/testing.ts"; +import { test, assertEqual } from "../../testing/mod.ts"; import { parse } from "../index.ts"; test(function dottedAlias() { diff --git a/flags/tests/kv_short.ts b/flags/tests/kv_short.ts index 93aa76387..1050d7734 100755 --- a/flags/tests/kv_short.ts +++ b/flags/tests/kv_short.ts @@ -1,4 +1,4 @@ -import { test, assertEqual } from "https://deno.land/x/testing/testing.ts"; +import { test, assertEqual } from "../../testing/mod.ts"; import { parse } from "../index.ts"; test(function short() { diff --git a/flags/tests/long.ts b/flags/tests/long.ts index 57e48ecbe..41c3e7743 100755 --- a/flags/tests/long.ts +++ b/flags/tests/long.ts @@ -1,4 +1,4 @@ -import { test, assertEqual } from "https://deno.land/x/testing/testing.ts"; +import { test, assertEqual } from "../../testing/mod.ts"; import { parse } from "../index.ts"; test(function longOpts() { diff --git a/flags/tests/num.ts b/flags/tests/num.ts index 66cbcb7ad..0588b51f6 100755 --- a/flags/tests/num.ts +++ b/flags/tests/num.ts @@ -1,4 +1,4 @@ -import { test, assertEqual } from "https://deno.land/x/testing/testing.ts"; +import { test, assertEqual } from "../../testing/mod.ts"; import { parse } from "../index.ts"; test(function nums() { diff --git a/flags/tests/parse.ts b/flags/tests/parse.ts index 29a500868..30551f875 100644 --- a/flags/tests/parse.ts +++ b/flags/tests/parse.ts @@ -1,4 +1,4 @@ -import { test, assertEqual } from "https://deno.land/x/testing/testing.ts"; +import { test, assertEqual } from "../../testing/mod.ts"; import { parse } from "../index.ts"; test(function _arseArgs() { diff --git a/flags/tests/short.ts b/flags/tests/short.ts index 00c9dcc80..dee981351 100755 --- a/flags/tests/short.ts +++ b/flags/tests/short.ts @@ -1,4 +1,4 @@ -import { test, assertEqual } from "https://deno.land/x/testing/testing.ts"; +import { test, assertEqual } from "../../testing/mod.ts"; import { parse } from "../index.ts"; test(function numbericShortArgs() { diff --git a/flags/tests/stop_early.ts b/flags/tests/stop_early.ts index 62725e6cf..ca64bf97e 100755 --- a/flags/tests/stop_early.ts +++ b/flags/tests/stop_early.ts @@ -1,4 +1,4 @@ -import { test, assertEqual } from "https://deno.land/x/testing/testing.ts"; +import { test, assertEqual } from "../../testing/mod.ts"; import { parse } from "../index.ts"; // stops parsing on the first non-option when stopEarly is set diff --git a/flags/tests/unknown.ts b/flags/tests/unknown.ts index ff5f2041c..2c87b18fe 100755 --- a/flags/tests/unknown.ts +++ b/flags/tests/unknown.ts @@ -1,4 +1,4 @@ -import { test, assertEqual } from "https://deno.land/x/testing/testing.ts"; +import { test, assertEqual } from "../../testing/mod.ts"; import { parse } from "../index.ts"; test(function booleanAndAliasIsNotUnknown() { diff --git a/flags/tests/whitespace.ts b/flags/tests/whitespace.ts index f50518b4f..8373cd19e 100755 --- a/flags/tests/whitespace.ts +++ b/flags/tests/whitespace.ts @@ -1,4 +1,4 @@ -import { test, assertEqual } from "https://deno.land/x/testing/testing.ts"; +import { test, assertEqual } from "../../testing/mod.ts"; import { parse } from "../index.ts"; test(function whitespaceShouldBeWhitespace() { |
