From 0d03c712378e7f2bc5b2ad5e88b43c1e719df5de Mon Sep 17 00:00:00 2001 From: Alfredo Orozco Date: Tue, 25 Jul 2023 22:32:58 -0600 Subject: [PATCH] Run black in tests files --- test/test_function_buzzer.py | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/test/test_function_buzzer.py b/test/test_function_buzzer.py index eb98613..a0a8605 100644 --- a/test/test_function_buzzer.py +++ b/test/test_function_buzzer.py @@ -15,8 +15,16 @@ def test_buzzer_function_with_default_params(): @pytest.mark.parametrize( "times, duration", [ - [1, 1], [2, 2], [3, 3], [4, 4], [5, 5], [6, 6], [7, 7], [8, 8], [9, 9], - ] + [1, 1], + [2, 2], + [3, 3], + [4, 4], + [5, 5], + [6, 6], + [7, 7], + [8, 8], + [9, 9], + ], ) def test_buzzer_function(times, duration): instance = printer.Dummy() @@ -36,7 +44,7 @@ def test_buzzer_function(times, duration): [3, -1, "duration must be between 1 and 9"], [3, 10, "duration must be between 1 and 9"], [3, 11, "duration must be between 1 and 9"], - ] + ], ) def test_buzzer_fuction_with_outrange_values(times, duration, expected_message): instance = printer.Dummy()