robotframework-jsonlibrary
robotframework-jsonlibrary copied to clipboard
issue in add_objcet_to_json
Hi, I believe there is a small issue with the function add_object_to_json. In line 132 of jsonlibrary.py, it should be...
match.value.update({child_name: object_to_add_cpy[child_name]})
Currently, the function is adding the whole object as a value. input: {key1;value1} output: {key1: {key1;value1}}
can you please check and let me know if it is a bug or I am doing something wrong?