Closedown

This commit is contained in:
boccioli_m
2015-06-08 16:20:43 +02:00
parent d363c926ab
commit 2e9feeff66
2 changed files with 9 additions and 7 deletions

View File

@@ -62,7 +62,7 @@ public class TestingList extends Panel {
Object deviceName = eval("deviceName");
Object testName = eval("testName");
String sSuccess = (success == true) ? "Success": "Fail";
String sSuccess = (success == true) ? "Success": "Failed";
if (ret != null) {
//SwingUtils.showMessage(getComponent(), "", ret.toString() + " - " + ret.getClass().getName());
testingList.showResult(deviceName.toString(), testName.toString(), ret.toString(), sSuccess);
@@ -117,7 +117,7 @@ public class TestingList extends Panel {
case "Success":
iconSource = "/icons/button_ok-16px.png";
break;
case "Fail":
case "Failed":
iconSource = "/icons/button_delete-16px.png";
break;
case "Running":