diff --git a/plugins/TestingList.java b/plugins/TestingList.java index a6cca88..57e2499 100644 --- a/plugins/TestingList.java +++ b/plugins/TestingList.java @@ -558,7 +558,7 @@ public class TestingList extends Panel { sDeviceName = jTable1.getValueAt(row, COL.DEVICENAME.ordinal()).toString(); sTestName = jTable1.getValueAt(row, COL.TESTNAME.ordinal()).toString(); sTestCaseName = jTable1.getValueAt(row, COL.TESTSUITE.ordinal()).toString(); - sTestPath = "\\script\\tests\\tests\\" + sTestCaseName + "\\" + sTestName + ".py"; + sTestPath = "\\script\\tests\\tests\\" + sTestCaseName + "\\" + sTestName + "\\" + sTestName + ".py"; File f = new File(sTestPath); if(!f.exists() || f.isDirectory()){ logger.log(Level.SEVERE, "Test file not found: " + sTestPath);