From b8ae06adec88a3f8b999370161715f2efed75661 Mon Sep 17 00:00:00 2001 From: Gui-FernandesBR Date: Sat, 6 Jul 2024 01:20:47 -0300 Subject: [PATCH] TST: Fix test --- tests/unit/test_tools_matrix.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/test_tools_matrix.py b/tests/unit/test_tools_matrix.py index f2b476fdc..89e75de0f 100644 --- a/tests/unit/test_tools_matrix.py +++ b/tests/unit/test_tools_matrix.py @@ -113,8 +113,8 @@ def test_matrix_neg(components): assert -Matrix(components) + Matrix(components) == Matrix.zeros() -@pytest.mark.parametrize("A_c", test_matrices) -@pytest.mark.parametrize("B_c", test_matrices) +@pytest.mark.parametrize("A", test_matrices) +@pytest.mark.parametrize("B", test_matrices) def test_matrix_add(A, B): expected_result = np.array(A) + np.array(B) assert Matrix(A) + Matrix(B) == expected_result