Closedown

This commit is contained in:
boccioli_m
2017-08-29 11:28:18 +02:00
parent ccdb66a1d8
commit 17cb2a82b7
2 changed files with 7 additions and 3 deletions
+6 -2
View File
@@ -96,8 +96,12 @@ class TestingTool:
self.log(columnsFormat.format("Parameter", "Value", "Description"))
for param in self.testParams:
self.log(columnsFormat.format(param,
param.value,
param.description))
param,
param))
self.log(columnsFormat.format(param,
param['value'],
param['description']))
def sendFeedback(self, returnString, testPassed):