From 697070f895d43d168d66a4fd8dfe449f26d2e82c Mon Sep 17 00:00:00 2001 From: "seqan-actions[bot]" Date: Mon, 12 Aug 2024 12:01:42 +0200 Subject: [PATCH] [MISC] automatic linting --- test/unit/io/sam_file/format_bam_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/io/sam_file/format_bam_test.cpp b/test/unit/io/sam_file/format_bam_test.cpp index 33668367b3..e3d436efe3 100644 --- a/test/unit/io/sam_file/format_bam_test.cpp +++ b/test/unit/io/sam_file/format_bam_test.cpp @@ -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 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});