Skip to content

Commit b9c2b55

Browse files
committed
fixup! core: add flag for train stops on stop signals
1 parent 643ddd2 commit b9c2b55

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

core/src/test/kotlin/fr/sncf/osrd/standalone_sim/StandaloneSimulationTest.kt

+6-3
Original file line numberDiff line numberDiff line change
@@ -113,19 +113,22 @@ class StandaloneSimulationTest {
113113
thirdDistance,
114114
maxEffortEnvelope.interpolateTotalTime(thirdDistance.distance.meters).seconds +
115115
60.seconds,
116+
null,
116117
null
117118
),
118119
SimulationScheduleItem(
119120
halfDistance,
120121
maxEffortEnvelope.interpolateTotalTime(halfDistance.distance.meters).seconds +
121122
120.seconds,
122-
15.seconds
123+
15.seconds,
124+
null
123125
),
124-
SimulationScheduleItem(twoThirdDistance, null, 30.seconds),
126+
SimulationScheduleItem(twoThirdDistance, null, 30.seconds, null),
125127
SimulationScheduleItem(
126128
pathLength,
127129
maxEffortEnvelope.totalTime.seconds + 300.seconds,
128-
0.seconds
130+
0.seconds,
131+
null
129132
),
130133
)
131134

0 commit comments

Comments
 (0)