File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -303,7 +303,7 @@ def test_filter_code_should_respect_noqa(self):
303
303
x = 1
304
304
""" )))
305
305
306
- def test_filter_code_expand_star_import (self ):
306
+ def test_filter_code_expand_star_imports (self ):
307
307
self .assertEqual (
308
308
"""\
309
309
from math import sin
@@ -312,7 +312,7 @@ def test_filter_code_expand_star_import(self):
312
312
'' .join (autoflake .filter_code ("""\
313
313
from math import *
314
314
sin(1)
315
- """ , expand_star_import = True )))
315
+ """ , expand_star_imports = True )))
316
316
317
317
self .assertEqual (
318
318
"""\
@@ -324,7 +324,7 @@ def test_filter_code_expand_star_import(self):
324
324
from math import *
325
325
sin(1)
326
326
cos(1)
327
- """ , expand_star_import = True )))
327
+ """ , expand_star_imports = True )))
328
328
329
329
def test_filter_code_ignore_multiple_star_import (self ):
330
330
self .assertEqual (
@@ -339,7 +339,7 @@ def test_filter_code_ignore_multiple_star_import(self):
339
339
from re import *
340
340
sin(1)
341
341
cos(1)
342
- """ , expand_star_import = True )))
342
+ """ , expand_star_imports = True )))
343
343
344
344
def test_multiline_import (self ):
345
345
self .assertTrue (autoflake .multiline_import (r"""\
You can’t perform that action at this time.
0 commit comments