Skip to content

Commit

Permalink
Testfixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
LTLA committed Sep 15, 2023
1 parent 9248f6c commit 529268d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/irlba.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ TEST(IrlbaTester, Fails) {
irb.set_number(100).run(A);
} catch (const std::exception& e) {
std::string message(e.what());
EXPECT_TRUE(message.find("must be greater than") != std::string::npos);
EXPECT_TRUE(message.find("cannot be greater than") != std::string::npos);
}

// Requested number of SVs > smaller dimension of the matrix.
Expand Down

0 comments on commit 529268d

Please sign in to comment.