This commit is contained in:
boccioli_m
2017-10-16 14:55:52 +02:00
parent b480f5360d
commit 14f44ef0b1
3 changed files with 6 additions and 6 deletions

View File

@@ -449,11 +449,11 @@ public class TestingListDetails extends javax.swing.JPanel {
if(param instanceof String){
name = (String) param;
Details attributes = new Details((HashMap) hmTestParams.get(param));
value = attributes.get("value");
description = attributes.get("description");
value = "\""+attributes.get("value")+"\"";
description = "\""+attributes.get("description")+"\"";
//build the python code for getting the test parameter
sTestParameters = sTestParameters + name + VALUE_SEPARATOR + value + VALUE_SEPARATOR + description + PARAM_SEPARATOR ;
System.out.println("sTestParameters: "+sTestParameters);
//System.out.println("sTestParameters: "+sTestParameters);
}
}
FileInputStream in = new FileInputStream(path.toFile());