fix: use display name in runtime-fallback retry

This commit is contained in:
codivedev
2026-03-27 13:14:23 +01:00
parent 324dbb119c
commit b4d4d30fa8
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -2404,7 +2404,7 @@ describe("runtime-fallback", () => {
expect(promptCalls.length).toBe(1)
const callBody = promptCalls[0]?.body as Record<string, unknown>
expect(callBody?.agent).toBe("prometheus")
expect(callBody?.agent).toBe("Prometheus (Plan Builder)")
expect(callBody?.model).toEqual({ providerID: "github-copilot", modelID: "claude-opus-4.6" })
})
})