Fix non_compliant test
This commit is contained in:
parent
508b064ebb
commit
24b51a21fd
|
@ -105,11 +105,12 @@ try:
|
||||||
except NotImplementedError:
|
except NotImplementedError:
|
||||||
print("NotImplementedError")
|
print("NotImplementedError")
|
||||||
|
|
||||||
|
# CIRCUITPY-CHANGE: We do check these.
|
||||||
# struct pack with too many args, not checked by uPy
|
# struct pack with too many args, not checked by uPy
|
||||||
print(struct.pack("bb", 1, 2, 3))
|
# print(struct.pack("bb", 1, 2, 3))
|
||||||
|
|
||||||
# struct pack with too few args, not checked by uPy
|
# struct pack with too few args, not checked by uPy
|
||||||
print(struct.pack("bb", 1))
|
# print(struct.pack("bb", 1))
|
||||||
|
|
||||||
# array slice assignment with unsupported RHS
|
# array slice assignment with unsupported RHS
|
||||||
try:
|
try:
|
||||||
|
|
|
@ -5,7 +5,7 @@ NotImplementedError
|
||||||
NotImplementedError
|
NotImplementedError
|
||||||
TypeError, ValueError
|
TypeError, ValueError
|
||||||
NotImplementedError
|
NotImplementedError
|
||||||
TypeError
|
NotImplementedError
|
||||||
NotImplementedError
|
NotImplementedError
|
||||||
NotImplementedError
|
NotImplementedError
|
||||||
NotImplementedError
|
NotImplementedError
|
||||||
|
|
Loading…
Reference in New Issue