Update for an Issue #1826

This commit is contained in:
Miroslav Stampar
2016-05-17 14:10:49 +02:00
parent 63d7cd607e
commit e7aaea2b8e
3 changed files with 3 additions and 3 deletions

View File

@@ -623,7 +623,7 @@ def paramToDict(place, parameters=None):
current[key] = "%s%s" % (str(value).lower(), BOUNDED_INJECTION_MARKER)
else:
current[key] = "%s%s" % (value, BOUNDED_INJECTION_MARKER)
candidates["%s #%d%s" % (parameter, len(candidates) + 1, CUSTOM_INJECTION_MARK_CHAR)] = json.dumps(deserialized)
candidates["%s (%s)" % (parameter, key)] = json.dumps(deserialized)
current[key] = original
deserialized = json.loads(testableParameters[parameter])