We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 632924f commit e192049Copy full SHA for e192049
tests/test_ModelicaSystemCmd.py
@@ -36,8 +36,7 @@ def test_simflags(mscmd_firstorder):
36
with pytest.deprecated_call():
37
mscmd.args_set(args=mscmd.parse_simflags(simflags="-noEventEmit -noRestart -override=a=1,x=3"))
38
39
- assert mscmd.get_cmd() == [
40
- mscmd.get_exe().as_posix(),
+ assert mscmd.get_cmd_args() == [
41
'-noEventEmit',
42
'-noRestart',
43
'-override=a=1,b=2,x=3',
@@ -47,8 +46,7 @@ def test_simflags(mscmd_firstorder):
47
46
"override": {'b': None},
48
})
49
50
51
52
53
54
'-override=a=1,x=3',
0 commit comments