diff --git a/plugins/TestingList.java b/plugins/TestingList.java index 57e2499..63088b0 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 + "\\" + sTestName + ".py"; + sTestPath = TESTS_TESTS_DEFAULT_DIR + sTestCaseName + "\\" + sTestName + "\\" + sTestName + ".py"; File f = new File(sTestPath); if(!f.exists() || f.isDirectory()){ logger.log(Level.SEVERE, "Test file not found: " + sTestPath);