mirror of
https://github.com/micropython/micropython.git
synced 2026-01-05 03:30:14 +01:00
tests/basic: Make various tests skippable.
This commit is contained in:
@@ -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])))
|
||||
|
||||
Reference in New Issue
Block a user