From e2006b02c607ae638f676d36dadc02ac90a8adb2 Mon Sep 17 00:00:00 2001 From: Gleb Belov Date: Mon, 12 Aug 2024 12:05:02 +1000 Subject: [PATCH] Fix runModels.py --- test/end2end/scripts/python/runModels.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/end2end/scripts/python/runModels.py b/test/end2end/scripts/python/runModels.py index fce578674..5de339689 100644 --- a/test/end2end/scripts/python/runModels.py +++ b/test/end2end/scripts/python/runModels.py @@ -88,7 +88,7 @@ def runModels(directory, solvers : list, print(",".join(notfound)) msg += "\nActually running {} test cases with solvers {}".format(len(modelList), solvernames) if solvers: - if solvers[0].getNThreads(g): + if solvers[0].getNThreads(): msg += " using {} threads".format( solvers[0].getNThreads() ) msg += '.' print(msg)