Skip to content

Commit c8f622a

Browse files
Copilotpelikhan
andauthored
Fix stale model assertion in pr-code-quality-reviewer contract test
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
1 parent 28c4280 commit c8f622a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pkg/cli/pr_code_quality_reviewer_workflow_contract_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ func TestPRCodeQualityReviewerWorkflowSubAgentModelContract(t *testing.T) {
2424
require.NoError(t, err, "Should read pr-code-quality-reviewer workflow")
2525

2626
text := string(content)
27-
assert.Contains(t, text, "model: copilot/gpt-5.4", "Main agent should use an explicit Copilot model")
27+
assert.Contains(t, text, "model: openai/gpt-5.4", "Main agent should use an explicit model")
2828
assert.Contains(t, text, "## agent: `grumpy-coder`", "Workflow should define the grumpy-coder sub-agent")
2929
assert.Contains(t, text, "model: small", "Sub-agent should use the portable small alias")
3030
assert.NotContains(t, text, "model: inherited", "Sub-agent should not inherit an unsupported tier-specific model")

0 commit comments

Comments
 (0)