1
0
mirror of https://github.com/nvbn/thefuck.git synced 2024-10-06 02:41:10 +01:00

#429: Fix tests with python 2

This commit is contained in:
nvbn 2016-01-13 22:08:24 +03:00
parent cab933e7e6
commit 20fff3142c

View File

@ -86,7 +86,7 @@ def test_match(script, stderr):
@pytest.mark.parametrize('script, stderr', [
('vim', invalid_operation),
('vim', invalid_operation('vim')),
('apt-get', "")])
def test_not_match(script, stderr):
assert not match(Command(script, stderr=stderr))