Skip to content

Commit

Permalink
Remove bad alloc test
Browse files Browse the repository at this point in the history
  • Loading branch information
rvaser committed Aug 29, 2023
1 parent c538ab7 commit eb5cda2
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions test/spoa_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,13 +111,6 @@ TEST(SpoaAlignmentTest, LargeInput) {
std::string(exception.what()).substr(11),
"AlignmentEngine::Prealloc] error: too large sequence!");
}
try {
ae->Prealloc((1ULL << 31) - 1, -1);
} catch (std::invalid_argument& exception) {
EXPECT_EQ(
std::string(exception.what()).substr(11),
"AlignmentEngine::Prealloc] error: insufficient memory!");
}
}

TEST_F(SpoaTest, Clear) {
Expand Down

0 comments on commit eb5cda2

Please sign in to comment.