tests/basics/namedtuple*: Import ucollections first.
Otherwise, test may have artefacts in the presence of the micropython-lib module.
This commit is contained in:
parent
2e3468a68c
commit
bdceea1d12
|
@ -1,8 +1,8 @@
|
||||||
try:
|
try:
|
||||||
try:
|
try:
|
||||||
from collections import namedtuple
|
|
||||||
except ImportError:
|
|
||||||
from ucollections import namedtuple
|
from ucollections import namedtuple
|
||||||
|
except ImportError:
|
||||||
|
from collections import namedtuple
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
try:
|
try:
|
||||||
try:
|
try:
|
||||||
from collections import namedtuple
|
|
||||||
except ImportError:
|
|
||||||
from ucollections import namedtuple
|
from ucollections import namedtuple
|
||||||
|
except ImportError:
|
||||||
|
from collections import namedtuple
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
||||||
|
|
Loading…
Reference in New Issue