Skip to content

Commit b8ae06a

Browse files
TST: Fix test
1 parent 2c19b7c commit b8ae06a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/test_tools_matrix.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ def test_matrix_neg(components):
113113
assert -Matrix(components) + Matrix(components) == Matrix.zeros()
114114

115115

116-
@pytest.mark.parametrize("A_c", test_matrices)
117-
@pytest.mark.parametrize("B_c", test_matrices)
116+
@pytest.mark.parametrize("A", test_matrices)
117+
@pytest.mark.parametrize("B", test_matrices)
118118
def test_matrix_add(A, B):
119119
expected_result = np.array(A) + np.array(B)
120120
assert Matrix(A) + Matrix(B) == expected_result

0 commit comments

Comments
 (0)