From 1d3c7bc0b11c7a00a9247710c9643643df8b4a39 Mon Sep 17 00:00:00 2001 From: boccioli_m Date: Wed, 10 Jun 2015 11:42:44 +0200 Subject: [PATCH] Closedown --- plugins/TestingList.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/TestingList.java b/plugins/TestingList.java index 0addac1..872df2c 100644 --- a/plugins/TestingList.java +++ b/plugins/TestingList.java @@ -59,7 +59,7 @@ public class TestingList extends Panel { Object deviceName = eval("DEVICE"); String sSuccess = (success == true) ? "Success" : "Failed"; - if (ret != null) { + if (ret != null ) { //SwingUtils.showMessage(getComponent(), "", ret.toString() + " - " + ret.getClass().getName()); iCurrentTestPos = testingList.showResult(deviceName.toString(), fileName, ret.toString(), sSuccess); //start next test @@ -424,6 +424,8 @@ public class TestingList extends Panel { //launch the test try{ args.put("DEVICE", sDeviceName); + args.put("ret", ""); + args.put("success", false); run(sTestName, args); } catch (Exception ex) { SwingUtils.showMessage(this, "", ex.toString());