diff --git a/tests/rules/test_git_remote_seturl_add.py b/tests/rules/test_git_remote_seturl_add.py index 8679fca7..011d6207 100644 --- a/tests/rules/test_git_remote_seturl_add.py +++ b/tests/rules/test_git_remote_seturl_add.py @@ -18,6 +18,7 @@ def test_match(command): def test_not_match(command): assert not match(command) + @pytest.mark.parametrize('command, new_command', [ (Command('git remote set-url origin git@github.com:nvbn/thefuck.git'), 'git remote add origin git@github.com:nvbn/thefuck.git')])