Fix flake8 errors: E126 continuation line over-indented for hanging indent
This commit is contained in:
+4
-4
@@ -13,10 +13,10 @@ from thefuck.system import Path
|
||||
class TestCorrectedCommand(object):
|
||||
|
||||
def test_equality(self):
|
||||
assert CorrectedCommand('ls', None, 100) == \
|
||||
CorrectedCommand('ls', None, 200)
|
||||
assert CorrectedCommand('ls', None, 100) != \
|
||||
CorrectedCommand('ls', lambda *_: _, 100)
|
||||
assert (CorrectedCommand('ls', None, 100) ==
|
||||
CorrectedCommand('ls', None, 200))
|
||||
assert (CorrectedCommand('ls', None, 100) !=
|
||||
CorrectedCommand('ls', lambda *_: _, 100))
|
||||
|
||||
def test_hashable(self):
|
||||
assert {CorrectedCommand('ls', None, 100),
|
||||
|
||||
Reference in New Issue
Block a user