Skip to content

Commit d175d40

Browse files
committed
Update fix_imports_six tests for addition of absolute_import
1 parent 09041b1 commit d175d40

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/test_fix_imports_six.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
import ConfigParser
1818
ConfigParser.ConfigParser()
1919
""", """\
20+
from __future__ import absolute_import
2021
import six.moves.configparser
2122
six.moves.configparser.ConfigParser()
2223
""")
@@ -25,6 +26,7 @@
2526
from ConfigParser import ConfigParser
2627
ConfigParser()
2728
""", """\
29+
from __future__ import absolute_import
2830
from six.moves.configparser import ConfigParser
2931
ConfigParser()
3032
""")

0 commit comments

Comments
 (0)