Closedown

This commit is contained in:
boccioli_m
2017-10-12 16:37:19 +02:00
parent 0d424116d0
commit f66a30142d
5 changed files with 10 additions and 11 deletions

View File

@@ -857,7 +857,7 @@ public class NewTest extends javax.swing.JPanel {
if(param instanceof String){
name = (String) param;
HashMap attributes = (HashMap) hmTestParams.get(param);
value = (String) attributes.get("value");
value = attributes.get("value").toString().replace("\\:",":");
description = (String) attributes.get("description");
//build the python code for getting the test parameter
sTestParameters = sTestParameters + name + "&" + value + "&" + description + ";" ;