increase proteus analog tolerance (#2327)

This commit is contained in:
Matthew Kennedy 2021-02-09 17:10:00 -08:00 committed by GitHub
parent 0d1e366a8b
commit 0cb079c2a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -34,8 +34,8 @@ public class ProteusAnalogTest extends RusefiTestBase {
double actualTps = SensorCentral.getInstance().getValue(Sensor.TPS);
// Accept up to 2% error - the PWM is a bit noisy, but it should be at least close
assertEquals(expectedTps, actualTps, 2);
// Accept up to 5% error - the PWM is a bit noisy, but it should be at least close
assertEquals(expectedTps, actualTps, 5);
}
@Test