summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/namedtuple1.py
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-05-02 14:15:11 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-05-02 14:15:11 +0300
commit8c35f3979c38bc8a29a22e7a61d33f87ff856124 (patch)
treecd50201cc11d2f688e85e91e1ff271bb9daea4f4 /tests/basics/namedtuple1.py
parent621c644205384103ac781bbe8cd952f0df289c41 (diff)
downloadmicropython-8c35f3979c38bc8a29a22e7a61d33f87ff856124.tar.gz
micropython-8c35f3979c38bc8a29a22e7a61d33f87ff856124.zip
tests: Update for _io/_collections module having been renamed.
Diffstat (limited to 'tests/basics/namedtuple1.py')
-rw-r--r--tests/basics/namedtuple1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/basics/namedtuple1.py b/tests/basics/namedtuple1.py
index ae795ba6de..dfbb79f2eb 100644
--- a/tests/basics/namedtuple1.py
+++ b/tests/basics/namedtuple1.py
@@ -1,7 +1,7 @@
try:
from collections import namedtuple
except ImportError:
- from _collections import namedtuple
+ from ucollections import namedtuple
T = namedtuple("Tup", ["foo", "bar"])
# CPython prints fully qualified name, what we don't bother to do so far