Skip to content

Commit 697070f

Browse files
committed
[MISC] automatic linting
1 parent 32112bd commit 697070f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/unit/io/sam_file/format_bam_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -607,12 +607,12 @@ TEST_F(bam_format, too_long_cigar_string_read)
607607

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

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

0 commit comments

Comments
 (0)