Skip to content

Commit

Permalink
Fix code quality checks
Browse files Browse the repository at this point in the history
  • Loading branch information
markheik committed Aug 31, 2023
1 parent 13c2f8d commit d4f5d40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/core/test_shf_vector_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down Expand Up @@ -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)])
Expand Down

0 comments on commit d4f5d40

Please sign in to comment.