test(release): align live model priority indices

This commit is contained in:
Vincent Koc
2026-07-09 00:17:26 -07:00
parent ea4e005008
commit 04b64ffc19

View File

@@ -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,
);