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`); });