From 90ae7b7baf30271ed10d92a76337de8141fe1484 Mon Sep 17 00:00:00 2001 From: Gabriel Abramzon Date: Fri, 30 Aug 2019 14:50:06 +0300 Subject: [PATCH] fix styling tests --- tests/rules/test_rbenv_install.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/rules/test_rbenv_install.py b/tests/rules/test_rbenv_install.py index 28595725..4c40c84f 100644 --- a/tests/rules/test_rbenv_install.py +++ b/tests/rules/test_rbenv_install.py @@ -14,12 +14,13 @@ If the version you need is missing, try upgrading ruby-build: @pytest.mark.parametrize('script, output', [ ('rbenv install 2.6.1', expected_output) - ]) +]) def test_match(script, output): assert match(Command(script, output)) @pytest.mark.parametrize('command, new_command', [ - (Command('rbenv install 2.6.1', expected_output), expected_actual_command)]) + (Command('rbenv install 2.6.1', expected_output), expected_actual_command) +]) def test_get_new_command(command, new_command): assert get_new_command(command) == new_command