diff options
Diffstat (limited to 'std/path/join_test.ts')
-rw-r--r-- | std/path/join_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/std/path/join_test.ts b/std/path/join_test.ts index d9a38fb82..6e70eba5b 100644 --- a/std/path/join_test.ts +++ b/std/path/join_test.ts @@ -106,7 +106,7 @@ const windowsJoinTests = [ [["c:", "file"], "c:\\file"], ]; -test(function join() { +test("join", function () { joinTests.forEach(function (p) { const _p = p[0] as string[]; const actual = path.posix.join.apply(null, _p); @@ -114,7 +114,7 @@ test(function join() { }); }); -test(function joinWin32() { +test("joinWin32", function () { joinTests.forEach(function (p) { const _p = p[0] as string[]; const actual = path.win32.join.apply(null, _p).replace(backslashRE, "/"); |