diff --git a/frontends/concrete-python/tests/execution/test_matmul.py b/frontends/concrete-python/tests/execution/test_matmul.py index a7def594f9..bcc0e91d8c 100644 --- a/frontends/concrete-python/tests/execution/test_matmul.py +++ b/frontends/concrete-python/tests/execution/test_matmul.py @@ -286,15 +286,14 @@ def rhs_function(x): ), ] + @pytest.mark.parametrize( "lhs_shape,rhs_shape,bounds,clear_rhs", [ - ( - lhs_shape, rhs_shape, bounds, clear - ) - for lhs_shape,rhs_shape,bounds in test_matmul_shape_and_bounds + (lhs_shape, rhs_shape, bounds, clear) + for lhs_shape, rhs_shape, bounds in test_matmul_shape_and_bounds for clear in [False, True] - ] + ], ) def test_matmul(lhs_shape, rhs_shape, bounds, clear_rhs, helpers): """