test-fullautomation / python-jsonpreprocessor

A preprocessor for json files
Apache License 2.0
2 stars 2 forks source link

Error message (4) #234

Closed HolQue closed 1 month ago

HolQue commented 2 months ago

In a previous version of the JsonPreprocessor, this code

"testlist" : ["A", "B", "C", "D"],
"param1"   : ${testlist}[1:3]

returned the list ["B", "C"]

In the meantime it has been decided to block slicing - but nevertheless previously slicing worked with hard coded integers.

In current version this changed to:

"param1" : ['A', 'B', 'C', 'D'][1:3]

This kind of output should be avoided.

HolQue commented 2 months ago

Retest successful. Issue can be closed.

test-fullautomation commented 1 month ago

integrated in RobotFramework AIO 0.11.0