tests: Fix import.

store-consts
Paul Sokolovsky 2014-05-11 03:40:32 +03:00
parent ea9708092e
commit b4acd028b6
1 changed files with 1 additions and 1 deletions

View File

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