1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-09-21 12:42:31 +01:00

Fix flake8 errors: E127 continuation line over-indented for visual indent

This commit is contained in:
Joseph Frazier
2016-10-06 15:16:43 -04:00
parent e0cab4fa1b
commit 521eb03d7a
8 changed files with 32 additions and 32 deletions

View File

@@ -47,8 +47,8 @@ def test_get_corrected_commands(mocker):
get_new_command=lambda x: [x.script + '@', x.script + ';'],
priority=60)]
mocker.patch('thefuck.corrector.get_rules', return_value=rules)
assert [cmd.script for cmd in get_corrected_commands(command)] \
== ['test!', 'test@', 'test;']
assert ([cmd.script for cmd in get_corrected_commands(command)]
== ['test!', 'test@', 'test;'])
def test_organize_commands():