From 408d55437942ceb3bee7dfe33d546362f220ed55 Mon Sep 17 00:00:00 2001 From: rusefillc Date: Sun, 20 Jun 2021 23:58:32 -0400 Subject: [PATCH] only test refactoring --- .../src/com/rusefi/f4discovery/CommonFunctionalTest.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/java_console/autotest/src/com/rusefi/f4discovery/CommonFunctionalTest.java b/java_console/autotest/src/com/rusefi/f4discovery/CommonFunctionalTest.java index ed2757ac3c..f63ec22986 100644 --- a/java_console/autotest/src/com/rusefi/f4discovery/CommonFunctionalTest.java +++ b/java_console/autotest/src/com/rusefi/f4discovery/CommonFunctionalTest.java @@ -344,7 +344,7 @@ public class CommonFunctionalTest extends RusefiTestBase { assertWaveNotNull(msg, chart, EngineChart.SPARK_1); assertWaveNull(msg, chart, EngineChart.TRIGGER_2); - sendComplexCommand("set " + "trigger_type" + " 1"); // TT_FORD_ASPIRE + sendComplexCommand("set " + "trigger_type" + " " + TT_TT_FORD_ASPIRE); chart = nextChart(); assertTrue(chart.get(EngineChart.TRIGGER_2) != null); } @@ -463,9 +463,10 @@ public class CommonFunctionalTest extends RusefiTestBase { /** * This method waits for longer then usual. + * todo: inline this method? complex and less complex seem to have same timeout these days? */ private void sendComplexCommand(String command) { - ecu.sendCommand(command, Timeouts.CMD_TIMEOUT); + ecu.sendCommand(command); } private static void assertWaveNull(EngineChart chart, String key) {