From 7e3ef955bfbafc639c2020ef080aa95c4b709a1b Mon Sep 17 00:00:00 2001 From: AndreVale69 Date: Fri, 31 May 2024 19:12:02 +0200 Subject: [PATCH] Fixed tests --- test/test_matrix_multiplication.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_matrix_multiplication.cpp b/test/test_matrix_multiplication.cpp index aa315da..b6899aa 100644 --- a/test/test_matrix_multiplication.cpp +++ b/test/test_matrix_multiplication.cpp @@ -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!"; }