Skip to content

Commit

Permalink
[MISC] automatic linting
Browse files Browse the repository at this point in the history
  • Loading branch information
seqan-actions committed Jul 12, 2024
1 parent 82e9039 commit 3af4e26
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/unit/hibf/sketch/compute_sketches_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ class compute_sketches_test : public ::testing::Test
{
ASSERT_EQ(sketch.size(), seqan::hibf::sketch::minHashes::sketch_size)
<< "ub_id: " << ub_id << "sid: " << sid;
EXPECT_RANGE_EQ(sketch, std::views::iota(start, start + seqan::hibf::sketch::minHashes::sketch_size)) << "ub_id: " << ub_id << "sid: " << sid;
EXPECT_RANGE_EQ(sketch, std::views::iota(start, start + seqan::hibf::sketch::minHashes::sketch_size))
<< "ub_id: " << ub_id << "sid: " << sid;
++sid;
}
start += 625;
Expand Down

0 comments on commit 3af4e26

Please sign in to comment.