From e54ae23d66eb55dbbb6c245e35800fdaa5b440a4 Mon Sep 17 00:00:00 2001 From: boccioli_m Date: Tue, 16 Jun 2015 15:46:13 +0200 Subject: [PATCH] Closedown --- plugins/TestingList.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/plugins/TestingList.java b/plugins/TestingList.java index 87800d5..9a2ef0e 100644 --- a/plugins/TestingList.java +++ b/plugins/TestingList.java @@ -559,13 +559,12 @@ public class TestingList extends Panel { sTestName = jTable1.getValueAt(row, COL.TESTNAME.ordinal()).toString(); sTestCaseName = jTable1.getValueAt(row, COL.TESTSUITE.ordinal()).toString(); sTestPath = FilenameUtils.separatorsToSystem(TESTS_TESTS_DEFAULT_DIR + sTestCaseName + "/" + sTestName + "/" + sTestName + ".py"); - sTestPath = sTestName; File f = new File(sTestPath); - /*if(!f.exists() || f.isDirectory()){ + if(!f.exists() || f.isDirectory()){ logger.log(Level.SEVERE, "Test file not found: " + sTestPath); showResult(sDeviceName, sTestName, "Test file not found: " + sTestPath, TestStatus.FAILURE.toString()); return; - }*/ + } showResult(sDeviceName, sTestName, "Test running", TestStatus.RUNNING.toString()); //launch the test try{