diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-05-02 14:15:11 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-05-02 14:15:11 +0300 |
commit | 8c35f3979c38bc8a29a22e7a61d33f87ff856124 (patch) | |
tree | cd50201cc11d2f688e85e91e1ff271bb9daea4f4 /tests/basics/class_store_class.py | |
parent | 621c644205384103ac781bbe8cd952f0df289c41 (diff) | |
download | micropython-8c35f3979c38bc8a29a22e7a61d33f87ff856124.tar.gz micropython-8c35f3979c38bc8a29a22e7a61d33f87ff856124.zip |
tests: Update for _io/_collections module having been renamed.
Diffstat (limited to 'tests/basics/class_store_class.py')
-rw-r--r-- | tests/basics/class_store_class.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/basics/class_store_class.py b/tests/basics/class_store_class.py index 09a8e8bc4d..10b94d3c6a 100644 --- a/tests/basics/class_store_class.py +++ b/tests/basics/class_store_class.py @@ -5,7 +5,7 @@ try: from collections import namedtuple except ImportError: - from _collections import namedtuple + from ucollections import namedtuple _DefragResultBase = namedtuple('DefragResult', [ 'foo', 'bar' ]) |