-
Notifications
You must be signed in to change notification settings - Fork 2
Closed
Labels
backlogenhancementNew feature or requestNew feature or requestprio 2ready for verifyingsuccessfully tested
Description
Previously this code
{
"keyP" : "A",
${keyP}[${keyP}] : "newvalue"
}
caused
'Identified dynamic name of key '${keyP}[${keyP}]' that does not exist. But new keys can only be created based on hard code names.'
With latest changes of the JsonPreprocessor values are returned
DotDict({'keyP': 'A', 'A': 'newvalue'})
Both is wrong.
A string cannot be an index of a string.
Expected is error message
TypeError: 'str' object does not support item assignment
Metadata
Metadata
Assignees
Labels
backlogenhancementNew feature or requestNew feature or requestprio 2ready for verifyingsuccessfully tested
Projects
Status
Done