diff options
Diffstat (limited to 'std/flags/stop_early_test.ts')
-rwxr-xr-x | std/flags/stop_early_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/flags/stop_early_test.ts b/std/flags/stop_early_test.ts index 4b7eac097..219ef8042 100755 --- a/std/flags/stop_early_test.ts +++ b/std/flags/stop_early_test.ts @@ -3,7 +3,7 @@ import { assertEquals } from "../testing/asserts.ts"; import { parse } from "./mod.ts"; // stops parsing on the first non-option when stopEarly is set -Deno.test(function stopParsing(): void { +Deno.test("stopParsing", function (): void { const argv = parse(["--aaa", "bbb", "ccc", "--ddd"], { stopEarly: true, }); |