From aaf1b818c5bc8e550ad3cc7f3782ff4f372087e9 Mon Sep 17 00:00:00 2001 From: boccioli_m Date: Wed, 10 Jun 2015 11:01:55 +0200 Subject: [PATCH] Closedown --- plugins/TestingList.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/TestingList.java b/plugins/TestingList.java index 7aa171c..622027d 100644 --- a/plugins/TestingList.java +++ b/plugins/TestingList.java @@ -335,10 +335,10 @@ public class TestingList extends Panel { } //find the test currently in progress public String[] getTestInProgress() { - String[] dsTestProperties = null; + String[] dsTestProperties = null; //search for device name in table for (int row = 0; row <= jTable1.getRowCount() - 1; row++) { - if ("Running".equals(jTable1.getValueAt(row, COL_STATUS))) { + if (jTable1.getValueAt(row, COL_STATUS).toString().equals("Running")) { dsTestProperties[0] = jTable1.getValueAt(row, COL_DEVICENAME).toString(); dsTestProperties[1] = jTable1.getValueAt(row, COL_TESTNAME).toString(); break;