tests: Update for _io/_collections module having been renamed.

This commit is contained in:
Paul Sokolovsky
2016-05-02 14:15:11 +03:00
parent 621c644205
commit 8c35f3979c
10 changed files with 10 additions and 10 deletions

View File

@@ -5,7 +5,7 @@
try:
from collections import namedtuple
except ImportError:
from _collections import namedtuple
from ucollections import namedtuple
_DefragResultBase = namedtuple('DefragResult', [ 'foo', 'bar' ])