diff options
Diffstat (limited to 'std/flags/long_test.ts')
-rwxr-xr-x | std/flags/long_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/std/flags/long_test.ts b/std/flags/long_test.ts index e5b68f8c0..f0f4d7545 100755 --- a/std/flags/long_test.ts +++ b/std/flags/long_test.ts @@ -9,11 +9,11 @@ Deno.test(function longOpts(): void { assertEquals(parse(["--host", "localhost", "--port", "555"]), { host: "localhost", port: 555, - _: [] + _: [], }); assertEquals(parse(["--host=localhost", "--port=555"]), { host: "localhost", port: 555, - _: [] + _: [], }); }); |