diff options
Diffstat (limited to 'flags/tests/whitespace.ts')
| -rwxr-xr-x | flags/tests/whitespace.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/flags/tests/whitespace.ts b/flags/tests/whitespace.ts index 22021e5ea..54ff067c7 100755 --- a/flags/tests/whitespace.ts +++ b/flags/tests/whitespace.ts @@ -1,8 +1,8 @@ // 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"; test(function whitespaceShouldBeWhitespace() { - assertEq(parse(["-x", "\t"]).x, "\t"); + assertEquals(parse(["-x", "\t"]).x, "\t"); }); |
