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,8 +1,11 @@
# test bytes + other
try:
import array
import uarray as array
except ImportError:
print("SKIP")
raise SystemExit
try:
import array
except ImportError:
print("SKIP")
raise SystemExit
print(b"123" + array.array('i', [1]))