tests: Rename "array" module to "uarray".

This commit is contained in:
Damien George
2019-10-22 17:33:23 +11:00
parent a2eea57b1d
commit 30e25174bb
26 changed files with 152 additions and 63 deletions

View File

@@ -1,9 +1,12 @@
# test construction of bytes from different objects
try:
from array import array
from uarray import array
except ImportError:
print("SKIP")
raise SystemExit
try:
from array import array
except ImportError:
print("SKIP")
raise SystemExit
# arrays
print(bytes(array('b', [1, 2])))