Skip to content

Commit

Permalink
TST: Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Gui-FernandesBR committed Jul 6, 2024
1 parent 2c19b7c commit b8ae06a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/test_tools_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b8ae06a

Please sign in to comment.