From 0d0f8e3be3ad611f8cf1e7f0a1a2c5fa78717ef7 Mon Sep 17 00:00:00 2001 From: NightKev <34855794+DayKev@users.noreply.github.com> Date: Mon, 4 Aug 2025 20:58:23 -0700 Subject: [PATCH] Remove redundant comment --- test/test-utils/mocks/mock-console/infer-color.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/test/test-utils/mocks/mock-console/infer-color.ts b/test/test-utils/mocks/mock-console/infer-color.ts index a643905b6f2..e01adbc4ad4 100644 --- a/test/test-utils/mocks/mock-console/infer-color.ts +++ b/test/test-utils/mocks/mock-console/infer-color.ts @@ -26,7 +26,6 @@ function findColorPrefix(args: string[]): string { for (const arg of args) { const match = /color:\s*(.+?)(?:;|$)/g.exec(arg); if (match === null) { - // no match continue; }