From d4f5d4065d71a11ef2b85836c80cfbda4634138d Mon Sep 17 00:00:00 2001 From: Markus Heikkinen Date: Thu, 31 Aug 2023 16:58:11 +0200 Subject: [PATCH] Fix code quality checks --- tests/core/test_shf_vector_data.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/core/test_shf_vector_data.py b/tests/core/test_shf_vector_data.py index da3b2e8..8302811 100644 --- a/tests/core/test_shf_vector_data.py +++ b/tests/core/test_shf_vector_data.py @@ -89,7 +89,7 @@ def test_invalid_header_version(value_type): @pytest.mark.parametrize("vector_length", range(0, 200, 32)) -@pytest.mark.parametrize("scaling", [x * 0.25 for x in range(0, 5)]) +@pytest.mark.parametrize("scaling", [x * 0.25 for x in range(5)]) @pytest.mark.parametrize("header_version", [1, 2]) @pytest.mark.parametrize(("x", "y"), [(0, 0), (1, 1), (32, 743)]) def test_shf_scope_vector(vector_length, scaling, header_version, x, y): @@ -135,7 +135,7 @@ def test_shf_scope_vector(vector_length, scaling, header_version, x, y): @pytest.mark.parametrize("vector_length", range(0, 200, 32)) -@pytest.mark.parametrize("scaling", [x * 0.25 for x in range(0, 5)]) +@pytest.mark.parametrize("scaling", [x * 0.25 for x in range(5)]) @pytest.mark.parametrize("timestamp_diff", range(0, 100, 25)) @pytest.mark.parametrize("header_version", [1, 2]) @pytest.mark.parametrize(("x", "y"), [(0, 0), (1, 1), (32, 743)])