summaryrefslogtreecommitdiff
path: root/tests/basics/bytearray_construct.py
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2015-08-30 00:30:28 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2015-08-30 00:38:00 +0300
commit58d9b10d70a584ee1a958c4f85708277404cf45a (patch)
treef9db1140e05e4f2355bd20967bbc702ffa73de93 /tests/basics/bytearray_construct.py
parent0a8b5d160bf9297dcb39af5657f61141038a0855 (diff)
tests: Split byteorder-dependent tests to *_endian.py's.
Diffstat (limited to 'tests/basics/bytearray_construct.py')
-rw-r--r--tests/basics/bytearray_construct.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/basics/bytearray_construct.py b/tests/basics/bytearray_construct.py
index def78c0d2..1c45f6fcf 100644
--- a/tests/basics/bytearray_construct.py
+++ b/tests/basics/bytearray_construct.py
@@ -9,5 +9,4 @@ print(bytearray([1, 2]))
# arrays
print(bytearray(array('b', [1, 2])))
-print(bytearray(array('h', [1, 2])))
-print(bytearray(array('I', [1, 2])))
+print(bytearray(array('h', [0x101, 0x202])))