diff options
Diffstat (limited to 'flags/tests/whitespace.ts')
-rwxr-xr-x | flags/tests/whitespace.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/flags/tests/whitespace.ts b/flags/tests/whitespace.ts index 1af0e77d2..24a291587 100755 --- a/flags/tests/whitespace.ts +++ b/flags/tests/whitespace.ts @@ -1,6 +1,6 @@ import { test, assertEqual } from "https://deno.land/x/testing/testing.ts"; -import parseArgs from "../index.ts"; +import { parse } from "../index.ts"; test(function whitespaceShouldBeWhitespace() { - assertEqual(parseArgs([ '-x', '\t' ]).x, '\t'); + assertEqual(parse([ '-x', '\t' ]).x, '\t'); }); |