From 498e6e99944cfc031852cf2032947b5138c3ac5c Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Sat, 8 Jun 2024 20:20:39 +0200 Subject: [PATCH] review comment 2 --- tests/testdata/test/fail_color.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/testdata/test/fail_color.ts b/tests/testdata/test/fail_color.ts index e73d8c4b7e..6a9d3d2c17 100644 --- a/tests/testdata/test/fail_color.ts +++ b/tests/testdata/test/fail_color.ts @@ -2,8 +2,7 @@ Deno.test("fail color", () => { throw new Error(`RedMessage: \x1b[31mThis should be red text\x1b[39m`); }); -// deno-lint-ignore no-explicit-any -Deno.test("step fail color", async (t: any) => { +Deno.test("step fail color", async (t) => { await t.step("step", () => { throw new Error(`RedMessage: \x1b[31mThis should be red text\x1b[39m`); });