diff options
Diffstat (limited to 'tests/extmod/ujson_loads_bytes.py')
-rw-r--r-- | tests/extmod/ujson_loads_bytes.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/extmod/ujson_loads_bytes.py b/tests/extmod/ujson_loads_bytes.py index 507e4ca885..3ee87bbcd5 100644 --- a/tests/extmod/ujson_loads_bytes.py +++ b/tests/extmod/ujson_loads_bytes.py @@ -9,5 +9,5 @@ except ImportError: print("SKIP") raise SystemExit -print(json.loads(b'[1,2]')) -print(json.loads(bytearray(b'[null]'))) +print(json.loads(b"[1,2]")) +print(json.loads(bytearray(b"[null]"))) |