Skip to content

Commit 74c937c

Browse files
committed
Fix GPU unit test
1 parent b99f01f commit 74c937c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/racon_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -444,13 +444,13 @@ TEST_F(RaconPolishingTest, FragmentCorrectionWithQualitiesCUDA) {
444444

445445
std::vector<std::unique_ptr<racon::Sequence>> polished_sequences;
446446
polish(polished_sequences, true);
447-
EXPECT_EQ(polished_sequences.size(), 39);
447+
EXPECT_EQ(polished_sequences.size(), 40);
448448

449449
uint32_t total_length = 0;
450450
for (const auto& it : polished_sequences) {
451451
total_length += it->data().size();
452452
}
453-
EXPECT_EQ(total_length, 385543); // CPU 389394
453+
EXPECT_EQ(total_length, 397185); // CPU 389394
454454
}
455455

456456
TEST_F(RaconPolishingTest, FragmentCorrectionWithQualitiesFullCUDA) {

0 commit comments

Comments
 (0)