-
Notifications
You must be signed in to change notification settings - Fork 2
Closed
Labels
Milestone
Description
(1)
Input:
"listparam" : ["A", "B"],
"newparam" : ${listparam}[20]
Result:
Error: 'The parameter '${listparam}[20]' is not available!'!
But expected:
Error: 'list index out of range'
(2)
Input:
"dictparam" : {"A" : 1, "B" : 2},
"newparam" : ${dictparam}['AB']
Result:
Error: 'The parameter '${dictparam}['AB']' is not available!'!
But expected:
Error: 'key error'
Because:
It makes a difference if only a key is not available or the entire dictionary.
It makes a difference if only a list element at a given index is not available or the entire list.
Metadata
Metadata
Assignees
Labels
Projects
Status
Done