summaryrefslogtreecommitdiff
path: root/flags/tests/whitespace.ts
diff options
context:
space:
mode:
Diffstat (limited to 'flags/tests/whitespace.ts')
-rwxr-xr-xflags/tests/whitespace.ts4
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");
});