summaryrefslogtreecommitdiff
path: root/std/flags/short_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/flags/short_test.ts')
-rwxr-xr-xstd/flags/short_test.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/std/flags/short_test.ts b/std/flags/short_test.ts
index d7171b920..6305bbb94 100755
--- a/std/flags/short_test.ts
+++ b/std/flags/short_test.ts
@@ -16,13 +16,13 @@ Deno.test(function short(): void {
a: true,
t: true,
s: "meow",
- _: []
+ _: [],
});
assertEquals(parse(["-h", "localhost"]), { h: "localhost", _: [] });
assertEquals(parse(["-h", "localhost", "-p", "555"]), {
h: "localhost",
p: 555,
- _: []
+ _: [],
});
});
@@ -31,7 +31,7 @@ Deno.test(function mixedShortBoolAndCapture(): void {
f: true,
p: 555,
h: "localhost",
- _: ["script.js"]
+ _: ["script.js"],
});
});
@@ -40,6 +40,6 @@ Deno.test(function shortAndLong(): void {
f: true,
p: 555,
h: "localhost",
- _: ["script.js"]
+ _: ["script.js"],
});
});