mirror of
https://github.com/nvbn/thefuck.git
synced 2025-01-31 02:01:13 +00:00
Fix flake8 errors: E225 missing whitespace around operator
This commit is contained in:
parent
93302c74b5
commit
10d409e6e2
@ -29,7 +29,7 @@ def test_match(stderr, script):
|
||||
|
||||
@pytest.mark.parametrize('script', ['brew link coreutils'])
|
||||
def test_not_match(script):
|
||||
stderr=''
|
||||
stderr = ''
|
||||
assert not match(Command(script=script, stderr=stderr))
|
||||
|
||||
|
||||
|
@ -22,7 +22,7 @@ def test_match(stdout, script):
|
||||
|
||||
@pytest.mark.parametrize('script', ['brew remove gnuplot'])
|
||||
def test_not_match(script):
|
||||
stdout='Uninstalling /usr/local/Cellar/gnuplot/5.0.4_1... (44 files, 2.3M)\n'
|
||||
stdout = 'Uninstalling /usr/local/Cellar/gnuplot/5.0.4_1... (44 files, 2.3M)\n'
|
||||
assert not match(Command(script=script, stdout=stdout))
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user