diff options
Diffstat (limited to 'flags/tests/stop_early.ts')
| -rwxr-xr-x | flags/tests/stop_early.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/flags/tests/stop_early.ts b/flags/tests/stop_early.ts index 5f320e8b8..799b16b78 100755 --- a/flags/tests/stop_early.ts +++ b/flags/tests/stop_early.ts @@ -1,6 +1,6 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. import { test } from "../../testing/mod.ts"; -import { assertEq } from "../../testing/asserts.ts"; +import { assertEquals } from "../../testing/asserts.ts"; import { parse } from "../mod.ts"; // stops parsing on the first non-option when stopEarly is set @@ -9,7 +9,7 @@ test(function stopParsing() { stopEarly: true }); - assertEq(argv, { + assertEquals(argv, { aaa: "bbb", _: ["ccc", "--ddd"] }); |
