Commit ad17391
committed
fix(ci): Use >= instead of > for 80% threshold on macOS
The test was failing with exactly 40/50 (80.0%) success rate:
- EXPECT_GT(40, 40) fails (strict greater than)
- EXPECT_GE(40, 40) passes (greater than or equal)
macOS consistently achieves exactly 80% under concurrent load,
so the threshold should be inclusive (>=) rather than exclusive (>).1 parent 9ebfad7 commit ad17391
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
282 | 282 | | |
283 | 283 | | |
284 | 284 | | |
285 | | - | |
| 285 | + | |
286 | 286 | | |
287 | 287 | | |
288 | 288 | | |
| |||
0 commit comments