summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Peres <martin.peres@linux.intel.com>2017-03-25 22:30:17 +0200
committerMartin Peres <martin.peres@linux.intel.com>2017-10-04 17:48:28 +0300
commit5c505fbad20f3a9ee263a9ec39ea8f47671868e9 (patch)
treef483f935e8d5b7a7e0abc82e7af9a77f97582f39
parent016fd38c03e7d94a648e5ba3f259a12d4aa65ee3 (diff)
ezbench: fix displaying testsets
-rwxr-xr-xezbench4
1 files changed, 2 insertions, 2 deletions
diff --git a/ezbench b/ezbench
index 67d9f61..2172e7f 100755
--- a/ezbench
+++ b/ezbench
@@ -130,8 +130,8 @@ if args.testsets is not None:
if args.report_name is None:
print("The test set '{}' contains the following tests:".format(name))
- for test in sorted(testset.tests.keys()):
- print("\t{} --> {} rounds".format(test, testset.tests[test]))
+ for test in sorted(testset.keys()):
+ print("\t{} --> {} rounds".format(test, testset[test]))
print("")
sys.exit(0)