Closedown
This commit is contained in:
@@ -20,14 +20,14 @@ class TestingTool:
|
||||
print now + ' ' + DEVICE + ' - ' + testName + ': ' + str(text)
|
||||
|
||||
#prepare and send feedback to calling tool
|
||||
def sendFeedback(self, testPath, testName, DEVICE, returnString, testPassed):
|
||||
def sendFeedback(self, returnString, testPassed):
|
||||
print_log(testName, DEVICE, 'End of test. Result:')
|
||||
print_log(testName, DEVICE, 'Device: ' + DEVICE)
|
||||
print_log(testName, DEVICE, 'Test name: ' + testName)
|
||||
print_log(testName, DEVICE, 'Test path: ' + testPath)
|
||||
print_log(testName, DEVICE, 'Device: ' + self.deviceName)
|
||||
print_log(testName, DEVICE, 'Test name: ' + self.testName)
|
||||
print_log(testName, DEVICE, 'Test path: ' + self.testPath)
|
||||
print_log(testName, DEVICE, 'Test passed: ' + str(testPassed))
|
||||
print_log(testName, DEVICE, 'Return string: ' + returnString)
|
||||
ret = [testPath, DEVICE, returnString, testPassed]
|
||||
ret = [self.testPath, self.deviceName, returnString, testPassed]
|
||||
return ret
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user