diff --git a/plugins/TestingList.java b/plugins/TestingList.java index 19f0ac5..81b382e 100644 --- a/plugins/TestingList.java +++ b/plugins/TestingList.java @@ -1626,10 +1626,10 @@ public class TestingList extends Panel { int row = jTable1.getSelectedRow(); String sDeviceName = jTable1.getValueAt(row, COL.DEVICENAME.ordinal()).toString(); String sTestName = jTable1.getValueAt(row, COL.TESTNAME.ordinal()).toString(); - String sTestPath = Paths.get(String.valueOf(jTable1.getValueAt(row, COL.TESTPATH.ordinal())).replace("\\", File.separator), sTestName + ".py").toString(); + String sTestPath = Paths.get(String.valueOf(jTable1.getValueAt(row, COL.TESTPATH.ordinal())).replace("\\", File.separator)).toString(); String sTestCaseName = jTable1.getValueAt(row, COL.TESTSUITE.ordinal()).toString(); String sTestDescription = getTestDescription(sTestPath); - String sDevicePath = Paths.get(jTable1.getValueAt(row, COL.DEVICEPATH.ordinal()).toString(), TESTS_CONFIG_FILENAME).toString(); + String sDevicePath = Paths.get(String.valueOf(jTable1.getValueAt(row, COL.DEVICEPATH.ordinal()))).toString(); System.out.println("sDevicePath: "+sDevicePath); System.out.println("sTestPath: "+sTestPath); String sDeviceDescription = jTable1.getValueAt(row, COL.DEVICEDESCR.ordinal()).toString(); diff --git a/script/tests/tests.properties b/script/tests/tests.properties index 2754b46..d1957b3 100644 --- a/script/tests/tests.properties +++ b/script/tests/tests.properties @@ -1,5 +1,5 @@ #TestingList for pshell: configuration properties -#Mon Oct 23 09:24:07 CEST 2017 +#Mon Oct 23 09:28:13 CEST 2017 customPanel= showEnabledTestsOnly=true listFilter=rps-test