Skip to content

Commit

Permalink
return a tuple as expected
Browse files Browse the repository at this point in the history
  • Loading branch information
adrpo committed Oct 15, 2024
1 parent befd4f7 commit 96b0548
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1028,7 +1028,7 @@ def cpu_name():
(u"#ulimitExe#", html.escape(str(conf["ulimitExe"]))),
(u"#default_tolerance#", html.escape(str(conf["default_tolerance"]))),
(u"#simFlags#", html.escape(conf.get("simFlags") or "")),
(u"#referenceFiles#", ('<p>Reference Files: %s</p>%s' % (conf["referenceFilesURL"].replace(os.path.dirname(os.path.realpath(__file__)),"")), gitReferenceFilesVersion) if ((conf.get("referenceFilesURL") or "") != "") else ""),
(u"#referenceFiles#", ('<p>Reference Files: %s</p>%s' % (conf["referenceFilesURL"].replace(os.path.dirname(os.path.realpath(__file__)),"")), gitReferenceFilesVersion) if ((conf.get("referenceFilesURL") or "") != "") else ("", gitReferenceFilesVersion)),
(u"#referenceTool#", ('<p>Verified using: %s (diffSimulationResults)</p>' % html.escape(ompython_omc_version)) if ((conf.get("referenceFiles") or "") != "") else ""),
(u"#Total#", html.escape(str(numSucceeded[0]))),
(u"#FrontendColor#", checkNumSucceeded(numSucceeded, 1)),
Expand Down

0 comments on commit 96b0548

Please sign in to comment.