tests/basics/namedtuple*: Import ucollections first.

Otherwise, test may have artefacts in the presence of the micropython-lib
module.
This commit is contained in:
Paul Sokolovsky 2018-02-03 14:50:00 +02:00 committed by Damien George
parent 2e3468a68c
commit bdceea1d12
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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