From ee19ffe01c55d060fee2bc904b99080a296b9e0b Mon Sep 17 00:00:00 2001 From: rudy Date: Fri, 2 Aug 2024 12:27:15 +0200 Subject: [PATCH] fix(frontend-python): test_matmul, formatting error --- frontends/concrete-python/tests/execution/test_matmul.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) 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): """