summaryrefslogtreecommitdiff
path: root/flags/tests/whitespace.ts
diff options
context:
space:
mode:
Diffstat (limited to 'flags/tests/whitespace.ts')
-rwxr-xr-xflags/tests/whitespace.ts4
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');
});