Skip to content

Commit

Permalink
Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreVale69 committed May 31, 2024
1 parent 482f4a0 commit 7e3ef95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_matrix_multiplication.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1483,10 +1483,10 @@ TEST(MatrixMultiplicationPropertiesTest, TestNonCommutativity) {
"It's the algorithm given by the professor, "
"maybe the test contains an error...";
ASSERT_EQ(C, expected) << "Matrix multiplication test failed!";
ASSERT_EQ(F, expected) << "Matrix multiplication test failed! "
ASSERT_EQ(F, expected_invert) << "Matrix multiplication test failed! "
"It's the algorithm given by the professor, "
"maybe the test contains an error...";
ASSERT_EQ(E, expected) << "Matrix multiplication test failed!";
ASSERT_EQ(E, expected_invert) << "Matrix multiplication test failed!";
}


Expand Down

0 comments on commit 7e3ef95

Please sign in to comment.