Skip to content

Commit 71a4075

Browse files
committed
[test_ModelicaSystemCmd] update test_simflags
1 parent e148d37 commit 71a4075

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

tests/test_ModelicaSystemCmd.py

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

3636
mscmd.args_set({
3737
"noEventEmit": None,
38-
"override": {'b': 2}
38+
"override": {'b': 2, 'a': 4},
3939
})
4040

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

4746
mscmd.args_set({
@@ -50,6 +49,5 @@ def test_simflags(mscmd_firstorder):
5049

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

0 commit comments

Comments
 (0)