We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c19b7c commit b8ae06aCopy full SHA for b8ae06a
tests/unit/test_tools_matrix.py
@@ -113,8 +113,8 @@ def test_matrix_neg(components):
113
assert -Matrix(components) + Matrix(components) == Matrix.zeros()
114
115
116
-@pytest.mark.parametrize("A_c", test_matrices)
117
-@pytest.mark.parametrize("B_c", test_matrices)
+@pytest.mark.parametrize("A", test_matrices)
+@pytest.mark.parametrize("B", test_matrices)
118
def test_matrix_add(A, B):
119
expected_result = np.array(A) + np.array(B)
120
assert Matrix(A) + Matrix(B) == expected_result
0 commit comments