Commit 667a8af
Use literal kelvin value for 1°F temperature assertion
The 1°F assertion computed its expected kelvin value algorithmically
((273.15 - (32 * 5.0 / 9.0)) + 5.0 / 9.0) — a mixed Int/Double expression
heavy enough to exceed the Swift type-checker's per-expression budget on
the macOS CI toolchain. Replace it with the equivalent literal kelvin
value (255.927778 K, which converts back to 1°F well within the test's
0.0001 tolerance), removing the computation entirely.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>1 parent 78ffb04 commit 667a8af
1 file changed
Lines changed: 2 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
263 | 263 | | |
264 | 264 | | |
265 | 265 | | |
266 | | - | |
| 266 | + | |
| 267 | + | |
267 | 268 | | |
268 | 269 | | |
269 | 270 | | |
| |||
0 commit comments