1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-03-14 06:38:32 +00:00

Update tests/rules/test_brew_cask_reinstall.py

Co-Authored-By: Pablo Aguiar <scorphus@gmail.com>
This commit is contained in:
Pavlos Vinieratos 2019-12-02 16:26:19 +01:00 committed by GitHub
parent dee9469e14
commit 34714dc6ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,7 @@ def test_not_match(script):
@pytest.mark.parametrize('script, formula, ', [
('brew cask install foo', 'foo'),
('brew install bar zap', 'bar zap')])
('brew cask install bar zap', 'bar zap')])
def test_get_new_command(script, formula):
command = Command(script, output)
new_command = 'brew cask reinstall {}'.format(formula)