From b3d73b648b856d41fe8516c9b4fab7a8d4429a15 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 5 Apr 2026 10:17:33 +0100 Subject: [PATCH] test: fix hook-alias runtime coverage after rebase (#61234) --- src/plugins/provider-runtime.test.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/plugins/provider-runtime.test.ts b/src/plugins/provider-runtime.test.ts index cbe06dd974c..141949f3925 100644 --- a/src/plugins/provider-runtime.test.ts +++ b/src/plugins/provider-runtime.test.ts @@ -300,9 +300,7 @@ describe("provider-runtime", () => { }); }); - it("returns no runtime plugin when the provider has no owning plugin", () => { it("matches providers by hook alias for runtime hook lookup", () => { - resolveOwningPluginIdsForProviderMock.mockReturnValue(["anthropic"]); resolvePluginProvidersMock.mockReturnValue([ { id: "anthropic", @@ -315,7 +313,6 @@ describe("provider-runtime", () => { expectProviderRuntimePluginLoad({ provider: "claude-cli", expectedPluginId: "anthropic", - expectedOnlyPluginIds: ["anthropic"], }); });