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"], }); });