Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/cli/forecast_compliance_fixtures_formal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ func TestFormal_FC_P3_ZeroETFixture(t *testing.T) {
require.True(t, hasET, "FC-P3: total_effective_tokens must be present")
etVal, ok := et.(float64)
require.True(t, ok, "FC-P3: total_effective_tokens must be a number")
assert.Equal(t, 0.0, etVal,
assert.InDelta(t, 0.0, etVal, 0.0,
"FC-P3 (T-FC-022): run_summary_zero_et.json must have total_effective_tokens == 0 "+
"to model a missing-artifact / no-ET scenario")
}
Expand Down
Loading