diff options
Diffstat (limited to 'fs/path/resolve_test.ts')
| -rw-r--r-- | fs/path/resolve_test.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/path/resolve_test.ts b/fs/path/resolve_test.ts index 7243dc030..7ee9513c1 100644 --- a/fs/path/resolve_test.ts +++ b/fs/path/resolve_test.ts @@ -3,7 +3,7 @@ const { cwd } = Deno; import { test } from "../../testing/mod.ts"; -import { assertEq } from "../../testing/asserts.ts"; +import { assertEquals } from "../../testing/asserts.ts"; import * as path from "./mod.ts"; const windowsTests = @@ -38,13 +38,13 @@ const posixTests = test(function resolve() { posixTests.forEach(function(p) { const actual = path.posix.resolve.apply(null, p[0]); - assertEq(actual, p[1]); + assertEquals(actual, p[1]); }); }); test(function resolveWin32() { windowsTests.forEach(function(p) { const actual = path.win32.resolve.apply(null, p[0]); - assertEq(actual, p[1]); + assertEquals(actual, p[1]); }); }); |
