summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/bytearray_construct.py
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-03-09 00:07:19 +0100
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-03-09 00:07:19 +0100
commit983144404b6526c22e5c4224807ea4214e11e248 (patch)
tree9e574044f0a16eba13b20110eb73c4537a07a868 /tests/basics/bytearray_construct.py
parent52b6764894755324db036731ae1d6ec77172419a (diff)
downloadmicropython-983144404b6526c22e5c4224807ea4214e11e248.tar.gz
micropython-983144404b6526c22e5c4224807ea4214e11e248.zip
tests/basic: Make various tests skippable.
Diffstat (limited to 'tests/basics/bytearray_construct.py')
-rw-r--r--tests/basics/bytearray_construct.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/basics/bytearray_construct.py b/tests/basics/bytearray_construct.py
index 1c45f6fcf5..9c8f3adaaa 100644
--- a/tests/basics/bytearray_construct.py
+++ b/tests/basics/bytearray_construct.py
@@ -1,12 +1,6 @@
# test construction of bytearray from different objects
-from array import array
-
# bytes, tuple, list
print(bytearray(b'123'))
print(bytearray((1, 2)))
print(bytearray([1, 2]))
-
-# arrays
-print(bytearray(array('b', [1, 2])))
-print(bytearray(array('h', [0x101, 0x202])))