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/relative_test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'std/path/relative_test.ts') diff --git a/std/path/relative_test.ts b/std/path/relative_test.ts index af5896236..18b6930e8 100644 --- a/std/path/relative_test.ts +++ b/std/path/relative_test.ts @@ -50,7 +50,7 @@ const relativeTests = { ], }; -test(function relative() { +test("relative", function () { relativeTests.posix.forEach(function (p) { const expected = p[2]; const actual = path.posix.relative(p[0], p[1]); @@ -58,7 +58,7 @@ test(function relative() { }); }); -test(function relativeWin32() { +test("relativeWin32", function () { relativeTests.win32.forEach(function (p) { const expected = p[2]; const actual = path.win32.relative(p[0], p[1]); -- cgit v1.2.3