summaryrefslogtreecommitdiff
path: root/python-modules
diff options
context:
space:
mode:
authorMartin Peres <martin.peres@linux.intel.com>2017-03-15 15:28:01 +0200
committerMartin Peres <martin.peres@linux.intel.com>2017-03-15 15:32:17 +0200
commit00c13d1b5ce801583c15e2c730fc6dc6536b081c (patch)
treee196a4cdc14956fcac99de8452e931c12091a30a /python-modules
parent3d1a00308b7d9edc2db4352b2ed2622537b38da0 (diff)
smartezbench: fix a information message not showing the right test name
Diffstat (limited to 'python-modules')
-rw-r--r--python-modules/ezbench/smartezbench.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python-modules/ezbench/smartezbench.py b/python-modules/ezbench/smartezbench.py
index b6ccdae..a3d6d67 100644
--- a/python-modules/ezbench/smartezbench.py
+++ b/python-modules/ezbench/smartezbench.py
@@ -1103,7 +1103,7 @@ class SmartEzbench:
added = self.__force_test_rounds_unlocked__(t[1], t[2], t[3])
if added > 0:
self.__log(Criticality.II,
- "Scheduled {} more runs for the test {} on commit {}".format(added, test, commit))
+ "Scheduled {} more runs for the test {} on commit {}".format(added, t[2], commit))
total_added += added
if total_added > 0:
self.__log(Criticality.II, "{}".format(t[4]))