diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-05-11 03:40:32 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-05-11 03:40:32 +0300 |
commit | b4acd028b613a721ffbe5a3136700f190635f7c9 (patch) | |
tree | 7a283372f74bb4c1d8b097fa34a3a49c4d2b96a6 /tests/basics/class_store_class.py | |
parent | ea9708092e8a49377a465ef8c8500943fe9ba772 (diff) | |
download | micropython-b4acd028b613a721ffbe5a3136700f190635f7c9.tar.gz micropython-b4acd028b613a721ffbe5a3136700f190635f7c9.zip |
tests: Fix import.
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 c765fceaa8..cc80fb5b1c 100644 --- a/tests/basics/class_store_class.py +++ b/tests/basics/class_store_class.py @@ -2,7 +2,7 @@ # There was a bug in MicroPython that under some conditions class stored # in instance attribute later was returned "bound" as if it was a method, # which caused class constructor to receive extra argument. -from collections import namedtuple +from _collections import namedtuple _DefragResultBase = namedtuple('DefragResult', 'foo bar') |