From 797b42cfd752d4ce43fdce616280710478420197 Mon Sep 17 00:00:00 2001 From: Joseph Frazier <1212jtraceur@gmail.com> Date: Wed, 5 Oct 2016 11:20:42 -0400 Subject: [PATCH] Fix flake8 errors: E302 expected 2 blank lines, found 1 --- tests/rules/test_git_remote_seturl_add.py | 1 + 1 file changed, 1 insertion(+) 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')])