diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-04-28 12:33:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-28 12:33:09 +0200 |
commit | 8feb30e3258ed9690eb850e3ca22842b260a0403 (patch) | |
tree | 6805bfe3df675c2c7f6a379093061c6b73d8365a /std/path/join_test.ts | |
parent | b508e845671de9351c3f51755647371d76128d29 (diff) |
BREAKING: remove overload of Deno.test() (#4951)
This commit removes overload of Deno.test() that accepted named
function.
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, "/"); |