summaryrefslogtreecommitdiff
path: root/fs/path/join_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'fs/path/join_test.ts')
-rw-r--r--fs/path/join_test.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/path/join_test.ts b/fs/path/join_test.ts
index acf5a8096..d82a1b471 100644
--- a/fs/path/join_test.ts
+++ b/fs/path/join_test.ts
@@ -1,5 +1,5 @@
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 backslashRE = /\\/g;
@@ -109,17 +109,17 @@ const windowsJoinTests = [
test(function join() {
joinTests.forEach(function(p) {
const actual = path.posix.join.apply(null, p[0]);
- assertEq(actual, p[1]);
+ assertEquals(actual, p[1]);
});
});
test(function joinWin32() {
joinTests.forEach(function(p) {
const actual = path.win32.join.apply(null, p[0]).replace(backslashRE, "/");
- assertEq(actual, p[1]);
+ assertEquals(actual, p[1]);
});
windowsJoinTests.forEach(function(p) {
const actual = path.win32.join.apply(null, p[0]);
- assertEq(actual, p[1]);
+ assertEquals(actual, p[1]);
});
});