File tree Expand file tree Collapse file tree 1 file changed +2
-17
lines changed Expand file tree Collapse file tree 1 file changed +2
-17
lines changed Original file line number Diff line number Diff line change @@ -116,22 +116,7 @@ def test_encoding_comments_kept_at_top(self):
116
116
from __future__ import print_function
117
117
print('Hello')
118
118
"""
119
- self .convert_check (before , after , ignore_imports = False )
120
-
121
- # Issue #121. This fails as of v0.14.1:
122
- before = u"""
123
- # -*- coding: utf-8 -*-
124
- # Author: etc. with some unicode ¿.
125
- 1 / 2
126
- """
127
- after = u"""
128
- # -*- coding: utf-8 -*-
129
- # Author: etc. with some unicode ¿.
130
- from __future__ import division
131
- from past.utils import old_div
132
- old_div(1, 2)
133
- """
134
- self .convert_check (before , after , ignore_imports = False )
119
+ self .convert_check (before , after )
135
120
136
121
def test_shebang_blank_with_future_division_import (self ):
137
122
"""
@@ -462,7 +447,7 @@ def test_source_coding_utf8(self):
462
447
"""
463
448
code = """
464
449
# -*- coding: utf-8 -*-
465
- icons = [u"â ", u"â ", u"â ", u"â "]
450
+ icons = [u"◐ ", u"◓ ", u"◑ ", u"◒ "]
466
451
"""
467
452
self .unchanged (code )
468
453
You can’t perform that action at this time.
0 commit comments