- 
                Notifications
    
You must be signed in to change notification settings  - Fork 2
 
Closed
Labels
Description
This works:
"dictParam1" : {"kA" : "A", "kB" : "B"},
"dictParam2" : {"kA" : "A",
                "kB" : "B"},
"A" : 1,
"dictParam3" : {"kA" : "${A}", "kB" : "B"},
"dictParam4" : {"kA" : "${A}",
                "kB" : "B"},
"dictParam5" : {"kA" : ${A},
                "kB" : "B"}
The last one without line break in between does not work:
"dictParam6" : {"kA" : ${A}, "kB" : "B"}
Error: 'Invalid parameter format: ${A}, "kB" - The double quotes are missing!!!'!
Astonishing that ', "kB"' is part of the error message. Seems that the key-value-pair separation does not work properly.
But line breaks should not make a difference.