Skip to content

Commit 93ea213

Browse files
committed
Fix syntax errors
1 parent 0a9a361 commit 93ea213

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,12 +267,12 @@ def target():
267267

268268
print("Start OMC version")
269269

270-
if docker
270+
if docker:
271271
omc = OMCProcessDocker(docker=docker, dockerExtraArgs=dockerExtraArgs)
272272
omhome=omc.sendExpression('getInstallationDirectoryPath()')
273273
omc_version=omc.sendExpression('getVersion()')
274274
ompython_omc_version=omc_version
275-
elif ompython_omhome !== "":
275+
elif ompython_omhome != "":
276276
# Use a different OMC for running OMPython than for running the tests
277277
omhome = os.environ["OPENMODELICAHOME"]
278278
omc_version = check_output_log(omc_cmd + ["--version"], stderr=subprocess.STDOUT).decode("ascii").strip()

0 commit comments

Comments
 (0)