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/flags/whitespace_test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'std/flags/whitespace_test.ts') diff --git a/std/flags/whitespace_test.ts b/std/flags/whitespace_test.ts index 878ed28df..ff7e2c5aa 100755 --- a/std/flags/whitespace_test.ts +++ b/std/flags/whitespace_test.ts @@ -2,6 +2,6 @@ import { assertEquals } from "../testing/asserts.ts"; import { parse } from "./mod.ts"; -Deno.test(function whitespaceShouldBeWhitespace(): void { +Deno.test("whitespaceShouldBeWhitespace", function (): void { assertEquals(parse(["-x", "\t"]).x, "\t"); }); -- cgit v1.2.3