Closedown

This commit is contained in:
boccioli_m
2015-06-16 14:17:07 +02:00
parent 53da898a53
commit 39bebb095a

View File

@@ -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);