Skip to content

Commit

Permalink
[MISC] Adjust tests
Browse files Browse the repository at this point in the history
  • Loading branch information
eseiler committed Oct 8, 2024
1 parent 2e90cbd commit 32a75b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/api/estimate_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ TEST_F(estimate_test, example)

std::ifstream output_file("Single_expression.out");
std::string line;
std::string expected{"GeneA\t9\t32\t"};
std::string expected{"GeneA\t10\t32\t"};
if (output_file.is_open())
{
while (std::getline(output_file, line))
Expand Down Expand Up @@ -287,7 +287,7 @@ TEST_F(estimate_test, example_multiple_threads)

std::ifstream output_file("Multiple_expression.out");
std::string line;
std::string expected{"GeneA\t9\t32\t"};
std::string expected{"GeneA\t10\t32\t"};
if (output_file.is_open())
{
while (std::getline(output_file, line))
Expand Down

0 comments on commit 32a75b6

Please sign in to comment.