From 9a7b020972ebf060ee0a6983ba65b79e9cd79eec Mon Sep 17 00:00:00 2001 From: rusefi Date: Fri, 24 Apr 2020 08:15:43 -0400 Subject: [PATCH] Hardware trigger input should be disabled if internal simulator is enabled #1355 --- java_console/autotest/src/com/rusefi/AutoTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java_console/autotest/src/com/rusefi/AutoTest.java b/java_console/autotest/src/com/rusefi/AutoTest.java index 8f59cff853..7eef6a090e 100644 --- a/java_console/autotest/src/com/rusefi/AutoTest.java +++ b/java_console/autotest/src/com/rusefi/AutoTest.java @@ -84,7 +84,7 @@ public class AutoTest { changeRpm(900); // TODO: we shall get this RPM higher! // first let's get to expected RPM - assertRpmDoesNotJump(3000, 15, 30, FAIL); + assertRpmDoesNotJump(4000, 15, 30, FAIL); } private static void testV12() { @@ -92,7 +92,7 @@ public class AutoTest { changeRpm(700); // TODO: we shall get this RPM higher! // first let's get to expected RPM - assertRpmDoesNotJump(1200, 15, 30, FAIL); + assertRpmDoesNotJump(2000, 15, 30, FAIL); } public static void assertRpmDoesNotJump(int rpm, int settleTime, int testDuration, Function callback) {