diff --git a/test/racon_test.cpp b/test/racon_test.cpp index 8997b03..ea08aff 100644 --- a/test/racon_test.cpp +++ b/test/racon_test.cpp @@ -444,13 +444,13 @@ TEST_F(RaconPolishingTest, FragmentCorrectionWithQualitiesCUDA) { std::vector> polished_sequences; polish(polished_sequences, true); - EXPECT_EQ(polished_sequences.size(), 39); + EXPECT_EQ(polished_sequences.size(), 40); uint32_t total_length = 0; for (const auto& it : polished_sequences) { total_length += it->data().size(); } - EXPECT_EQ(total_length, 385543); // CPU 389394 + EXPECT_EQ(total_length, 397185); // CPU 389394 } TEST_F(RaconPolishingTest, FragmentCorrectionWithQualitiesFullCUDA) {