mirror of
https://github.com/micropython/micropython.git
synced 2026-01-06 12:10:13 +01:00
tests/basics/namedtuple*: Import ucollections first.
Otherwise, test may have artefacts in the presence of the micropython-lib module.
This commit is contained in:
committed by
Damien George
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
|
||||||
|
|||||||
Reference in New Issue
Block a user