-
Notifications
You must be signed in to change notification settings - Fork 39
Open
Description
Function convert_json_to_string returns wrong encoding if you use UTF-8. I have workaround:
` @staticmethod
def convert_json_to_string(json_object):
"""Convert JSON object to string
Arguments:
- json_object: json as a dictionary object.
Return new json_string
Examples:
| ${json_str}= | Convert JSON To String | ${json_obj} |
"""
return json.dumps(json_object, **ensure_ascii=False**)`
Metadata
Metadata
Assignees
Labels
No labels