summaryrefslogtreecommitdiff
path: root/flags/tests/whitespace.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-12-24 10:28:01 -0500
committerGitHub <noreply@github.com>2018-12-24 10:28:01 -0500
commitb5f6f972342dbc5e1a4a3116743d812ec6baddea (patch)
treebe227d05145ed3cfede8d5400bfdc79ce2d3a67c /flags/tests/whitespace.ts
parenta5ad3868870f54c32b95c3e473cb86973ec53493 (diff)
Format (denoland/deno_std#42)
Original: https://github.com/denoland/deno_std/commit/9b8923844f643fa5e04ea85ce1df835c10e09b7d
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");
});