Test fix due to scaling change

This commit is contained in:
Matthew Kennedy 2023-05-04 14:43:18 -07:00
parent 717c0c47a9
commit 7cc3fb5472
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ TEST(misc, testEngineMath) {
// calc. airFlow using airMass, and find tCharge // calc. airFlow using airMass, and find tCharge
engine->periodicFastCallback(); engine->periodicFastCallback();
ASSERT_NEAR(59.1175f, engine->engineState.sd.tCharge, EPS4D); ASSERT_NEAR(59.12f, engine->engineState.sd.tCharge, EPS4D);
ASSERT_NEAR(56.9762f/*kg/h*/, engine->engineState.airflowEstimate, EPS4D); ASSERT_NEAR(56.9762f/*kg/h*/, engine->engineState.airflowEstimate, EPS4D);
} }