We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 14a144f + 59b1596 commit 1b6ba3cCopy full SHA for 1b6ba3c
1 file changed
tests/test_ModelicaSystem.py
@@ -157,23 +157,21 @@ def test_getSolutions_docker(model_firstorder):
157
omcp = OMPython.OMCProcessDocker(docker="openmodelica/openmodelica:v1.25.0-minimal")
158
omc = OMPython.OMCSessionZMQ(omc_process=omcp)
159
160
- file_path = model_firstorder.as_posix()
161
mod = OMPython.ModelicaSystem(
162
omc_process=omc.omc_process,
163
)
164
mod.model(
165
- model_file=file_path,
166
model_name="M",
+ model_file=model_firstorder.as_posix(),
167
168
169
_run_getSolutions(mod)
170
171
172
def test_getSolutions(model_firstorder):
173
- filePath = model_firstorder.as_posix()
174
mod = OMPython.ModelicaSystem()
175
176
- model_file=filePath,
177
178
179
0 commit comments