diff options
Diffstat (limited to 'tests/extmod/json_loads.py')
-rw-r--r-- | tests/extmod/json_loads.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/extmod/json_loads.py b/tests/extmod/json_loads.py index 095e67d74..092402d71 100644 --- a/tests/extmod/json_loads.py +++ b/tests/extmod/json_loads.py @@ -86,7 +86,7 @@ except ValueError: # incomplete array declaration try: - my_print(json.loads('[0,')) + my_print(json.loads("[0,")) except ValueError: print("ValueError") |