From 8feb30e3258ed9690eb850e3ca22842b260a0403 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 28 Apr 2020 12:33:09 +0200 Subject: BREAKING: remove overload of Deno.test() (#4951) This commit removes overload of Deno.test() that accepted named function. --- std/path/resolve_test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'std/path/resolve_test.ts') diff --git a/std/path/resolve_test.ts b/std/path/resolve_test.ts index 95aa84cce..36a537b7a 100644 --- a/std/path/resolve_test.ts +++ b/std/path/resolve_test.ts @@ -34,7 +34,7 @@ const posixTests = [["/foo/tmp.3/", "../tmp.3/cycles/root.js"], "/foo/tmp.3/cycles/root.js"], ]; -test(function resolve() { +test("resolve", function () { posixTests.forEach(function (p) { const _p = p[0] as string[]; const actual = path.posix.resolve.apply(null, _p); @@ -42,7 +42,7 @@ test(function resolve() { }); }); -test(function resolveWin32() { +test("resolveWin32", function () { windowsTests.forEach(function (p) { const _p = p[0] as string[]; const actual = path.win32.resolve.apply(null, _p); -- cgit v1.2.3