We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a9a361 commit 93ea213Copy full SHA for 93ea213
1 file changed
test.py
@@ -267,12 +267,12 @@ def target():
267
268
print("Start OMC version")
269
270
-if docker
+if docker:
271
omc = OMCProcessDocker(docker=docker, dockerExtraArgs=dockerExtraArgs)
272
omhome=omc.sendExpression('getInstallationDirectoryPath()')
273
omc_version=omc.sendExpression('getVersion()')
274
ompython_omc_version=omc_version
275
-elif ompython_omhome !== "":
+elif ompython_omhome != "":
276
# Use a different OMC for running OMPython than for running the tests
277
omhome = os.environ["OPENMODELICAHOME"]
278
omc_version = check_output_log(omc_cmd + ["--version"], stderr=subprocess.STDOUT).decode("ascii").strip()
0 commit comments