summaryrefslogtreecommitdiff
path: root/flags/tests/whitespace.ts
diff options
context:
space:
mode:
Diffstat (limited to 'flags/tests/whitespace.ts')
-rwxr-xr-xflags/tests/whitespace.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/flags/tests/whitespace.ts b/flags/tests/whitespace.ts
index 24a291587..f50518b4f 100755
--- a/flags/tests/whitespace.ts
+++ b/flags/tests/whitespace.ts
@@ -2,5 +2,5 @@ import { test, assertEqual } from "https://deno.land/x/testing/testing.ts";
import { parse } from "../index.ts";
test(function whitespaceShouldBeWhitespace() {
- assertEqual(parse([ '-x', '\t' ]).x, '\t');
+ assertEqual(parse(["-x", "\t"]).x, "\t");
});