From d7060decad83ef7cf9f8f0973780028a01d17b29 Mon Sep 17 00:00:00 2001 From: Ludovic Apvrille <ludovic.apvrille@telecom-paris.fr> Date: Tue, 16 May 2023 16:17:06 +0200 Subject: [PATCH] Resolving bug on test --- .../src/test/java/tmltranslator/DiplodocusSimulatorTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ttool/src/test/java/tmltranslator/DiplodocusSimulatorTest.java b/ttool/src/test/java/tmltranslator/DiplodocusSimulatorTest.java index 2f975d2598..b36f69f9d0 100644 --- a/ttool/src/test/java/tmltranslator/DiplodocusSimulatorTest.java +++ b/ttool/src/test/java/tmltranslator/DiplodocusSimulatorTest.java @@ -39,8 +39,8 @@ public class DiplodocusSimulatorTest extends AbstractTest { // model for Daemon Run To Next Breakpoint final String MODELS_DAEMON_RTNB = "testDaemon"; - final int [] DAEMON_RTNBP_1 = {10, 9, 2147483647, 0}; // 2147483647==-1 - final int [] DAEMON_RTNBP_2 = {17, 16, 2147483647, 0}; // 2147483647==-1 + final int [] DAEMON_RTNBP_1 = {12, 11, 2147483647, 0}; // 2147483647==-1 + final int [] DAEMON_RTNBP_2 = {19, 18, 2147483647, 0}; // 2147483647==-1 private String SIM_DIR; @BeforeClass -- GitLab