From 4337fa20963c47ac3c6abf053e03b5ac8c099507 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Fri, 13 Feb 2026 16:43:13 +0100 Subject: [PATCH] fix: remove any from doctor-security dmScope regression test (#13129) (thanks @VintLin) --- src/commands/doctor-security.e2e.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/doctor-security.e2e.test.ts b/src/commands/doctor-security.e2e.test.ts index c1a37bb22f1..c2f0e6f1e2a 100644 --- a/src/commands/doctor-security.e2e.test.ts +++ b/src/commands/doctor-security.e2e.test.ts @@ -2,7 +2,7 @@ import { afterEach, beforeEach, describe, expect, it, vi } from "vitest"; import type { OpenClawConfig } from "../config/config.js"; const note = vi.hoisted(() => vi.fn()); -const pluginRegistry = vi.hoisted(() => ({ list: [] as any[] })); +const pluginRegistry = vi.hoisted(() => ({ list: [] as unknown[] })); vi.mock("../terminal/note.js", () => ({ note,