Update test_function_buzzer.py to pass black

This commit is contained in:
Alfredo orozco 2023-07-25 14:15:07 -06:00 committed by GitHub
parent c10242c09d
commit 9d4c4bc7c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,8 +15,16 @@ def test_buzzer_function_with_default_params():
@pytest.mark.parametrize( @pytest.mark.parametrize(
"times, duration", "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): def test_buzzer_function(times, duration):
instance = printer.Dummy() instance = printer.Dummy()