Skip to content

Commit

Permalink
remove skip mark in test
Browse files Browse the repository at this point in the history
  • Loading branch information
hhatto committed Apr 4, 2020
1 parent 99611aa commit a86fcd7
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion test/test_autopep8.py
Expand Up @@ -4640,7 +4640,6 @@ def test_w504_with_e265_ignore_option_regression(self):
with autopep8_context(line, options=['--ignore=E265']) as result:
self.assertEqual(line, result)

@unittest.skip('TODO')
def test_w504_with_line_comment(self):
line = '(width == 0 +\n # this is comment\n height == 0)\n'
fixed = '(width == 0\n # this is comment\n + height == 0)\n'
Expand Down

0 comments on commit a86fcd7

Please sign in to comment.