Skip to content

Commit 30c29b8

Browse files
committed
[test_ModelicaSystemCmd] update test_simflags
1 parent c682058 commit 30c29b8

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

tests/test_ModelicaSystemCmd.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,12 @@ def test_simflags(mscmd_firstorder):
3636

3737
mscmd.args_set({
3838
"noEventEmit": None,
39-
"override": {'b': 2}
39+
"override": {'b': 2, 'a': 4},
4040
})
4141

4242
assert mscmd.get_cmd_args() == [
4343
'-noEventEmit',
44-
'-noRestart',
45-
'-override=a=1,b=2,x=3',
44+
'-override=a=4,b=2',
4645
]
4746

4847
mscmd.args_set({
@@ -51,6 +50,5 @@ def test_simflags(mscmd_firstorder):
5150

5251
assert mscmd.get_cmd_args() == [
5352
'-noEventEmit',
54-
'-noRestart',
55-
'-override=a=1,x=3',
53+
'-override=a=4',
5654
]

0 commit comments

Comments
 (0)