diff options
Diffstat (limited to 'std/flags/long_test.ts')
-rwxr-xr-x | std/flags/long_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/flags/long_test.ts b/std/flags/long_test.ts index f0f4d7545..1c8ccca51 100755 --- a/std/flags/long_test.ts +++ b/std/flags/long_test.ts @@ -2,7 +2,7 @@ import { assertEquals } from "../testing/asserts.ts"; import { parse } from "./mod.ts"; -Deno.test(function longOpts(): void { +Deno.test("longOpts", function (): void { assertEquals(parse(["--bool"]), { bool: true, _: [] }); assertEquals(parse(["--pow", "xixxle"]), { pow: "xixxle", _: [] }); assertEquals(parse(["--pow=xixxle"]), { pow: "xixxle", _: [] }); |