1
0
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:
Joseph Frazier 2016-10-05 11:13:01 -04:00
parent 93302c74b5
commit 10d409e6e2
2 changed files with 2 additions and 2 deletions

View File

@ -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))

View File

@ -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))