summaryrefslogtreecommitdiff
path: root/tests/float/bytearray_construct.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/float/bytearray_construct.py')
-rw-r--r--tests/float/bytearray_construct.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/float/bytearray_construct.py b/tests/float/bytearray_construct.py
deleted file mode 100644
index 257d37d1b..000000000
--- a/tests/float/bytearray_construct.py
+++ /dev/null
@@ -1,12 +0,0 @@
-# test construction of bytearray from array with float type
-
-try:
- from uarray import array
-except ImportError:
- try:
- from array import array
- except ImportError:
- print("SKIP")
- raise SystemExit
-
-print(bytearray(array("f", [1, 2.3])))