diff --git a/src/gateway/gateway-models.profiles.live.test.ts b/src/gateway/gateway-models.profiles.live.test.ts index dfa994b5ad1e..897819b4b6f8 100644 --- a/src/gateway/gateway-models.profiles.live.test.ts +++ b/src/gateway/gateway-models.profiles.live.test.ts @@ -2289,10 +2289,10 @@ describe("getHighSignalLiveModelPriorityIndex", () => { it("prefers curated Google replacements over big-pickle", () => { expect( getHighSignalLiveModelPriorityIndex({ provider: "google", id: "gemini-3.1-pro-preview" }), - ).toBe(3); + ).toBe(4); expect( getHighSignalLiveModelPriorityIndex({ provider: "google", id: "gemini-3-flash-preview" }), - ).toBe(4); + ).toBe(5); expect(getHighSignalLiveModelPriorityIndex({ provider: "opencode", id: "big-pickle" })).toBe( null, );