Skip to content

Commit

Permalink
Updated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreVale69 committed May 30, 2024
1 parent 6975a65 commit df733d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_matrix_multiplication.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ TEST(MatrixMultiplicationTest, TestIdentityMultiplyMatrices) {
};
std::vector<std::vector<int>> C(1, std::vector<int>(1, 0));

multiplyMatricesWithoutErrors(A, B, C, 1, 1, 1);
multiplyMatrices(A, B, C, 1, 1, 1);

std::vector<std::vector<int>> expected = {
{1}
Expand Down

0 comments on commit df733d8

Please sign in to comment.