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 Aug 12, 2024
1 parent 32112bd commit 697070f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/io/sam_file/format_bam_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -607,12 +607,12 @@ TEST_F(bam_format, too_long_cigar_string_read)

TEST_F(bam_format, too_long_cigar_string_write)
{
auto read = seqan3::views::repeat_n('T'_dna5, 70'000);
auto read = seqan3::views::repeat_n('T'_dna5, 70000);
auto ref = seqan3::views::repeat_n('A'_dna5, 2 * read.size() - 1);

// create a cigar with more than 65535 cigar elements
std::vector<seqan3::cigar> too_long_cigar{};
for (size_t i = 0; i < 69'999; ++i)
for (size_t i = 0; i < 69999; ++i)
{
too_long_cigar.push_back({1, 'M'_cigar_operation});
too_long_cigar.push_back({1, 'D'_cigar_operation});
Expand Down

0 comments on commit 697070f

Please sign in to comment.