We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4788b3 commit 9674e5fCopy full SHA for 9674e5f
1 file changed
tests/test_ModelicaSystemCmd.py
@@ -18,7 +18,11 @@ def model_firstorder(tmp_path):
18
@pytest.fixture
19
def mscmd_firstorder(model_firstorder):
20
mod = OMPython.ModelicaSystem(fileName=model_firstorder.as_posix(), modelName="M")
21
- mscmd = OMPython.ModelicaSystemCmd(runpath=mod.getWorkDirectory(), modelname=mod._model_name)
+ mscmd = OMPython.ModelicaSystemCmd(
22
+ session=mod._getconn,
23
+ runpath=mod.getWorkDirectory(),
24
+ modelname=mod._model_name,
25
+ )
26
return mscmd
27
28
0 commit comments