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

@@ -2,7 +2,7 @@ try:
from collections import OrderedDict
except ImportError:
try:
from _collections import OrderedDict
from ucollections import OrderedDict
except ImportError:
print("SKIP")
import sys