diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-03-09 00:07:19 +0100 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-03-09 00:07:19 +0100 |
commit | 983144404b6526c22e5c4224807ea4214e11e248 (patch) | |
tree | 9e574044f0a16eba13b20110eb73c4537a07a868 /tests/basics/bytes_add.py | |
parent | 52b6764894755324db036731ae1d6ec77172419a (diff) | |
download | micropython-983144404b6526c22e5c4224807ea4214e11e248.tar.gz micropython-983144404b6526c22e5c4224807ea4214e11e248.zip |
tests/basic: Make various tests skippable.
Diffstat (limited to 'tests/basics/bytes_add.py')
-rw-r--r-- | tests/basics/bytes_add.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/basics/bytes_add.py b/tests/basics/bytes_add.py index 7a887db231..5432d01e58 100644 --- a/tests/basics/bytes_add.py +++ b/tests/basics/bytes_add.py @@ -2,10 +2,3 @@ print(b"123" + b"456") print(b"123" + bytearray(2)) - -import array - -# should be byteorder-neutral -print(b"123" + array.array('h', [0x1515])) - -print(b"\x01\x02" + array.array('b', [1, 2])) |