summaryrefslogtreecommitdiff
path: root/tests/extmod/ujson_loads_bytes.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/extmod/ujson_loads_bytes.py')
-rw-r--r--tests/extmod/ujson_loads_bytes.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/extmod/ujson_loads_bytes.py b/tests/extmod/ujson_loads_bytes.py
deleted file mode 100644
index 3ee87bbcd..000000000
--- a/tests/extmod/ujson_loads_bytes.py
+++ /dev/null
@@ -1,13 +0,0 @@
-# test loading from bytes and bytearray (introduced in Python 3.6)
-
-try:
- import ujson as json
-except ImportError:
- try:
- import json
- except ImportError:
- print("SKIP")
- raise SystemExit
-
-print(json.loads(b"[1,2]"))
-print(json.loads(bytearray(b"[null]")))