Skip to content

Commit 86bdc92

Browse files
committed
wip
1 parent de1e753 commit 86bdc92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/unit/format/sam_file_format_test_template.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,14 +231,14 @@ TYPED_TEST_P(sam_file_read, all_missing_data)
231231

232232
TYPED_TEST_P(sam_file_read, select_fields)
233233
{
234-
typename TestFixture::stream_type istream{this->empty_input};
234+
typename TestFixture::stream_type istream{this->verbose_reads_input};
235235

236236
constexpr auto fid = bio::vtag<bio::field::rname, bio::field::pos>;
237237
constexpr auto ftype = bio::ttag<std::string_view, int64_t>;
238238

239239
using record_t =
240240
bio::detail::record_from_typelist<std::remove_cvref_t<decltype(fid)>, std::remove_cvref_t<decltype(ftype)>>;
241-
bio::map_io::reader_options default_options{.field_ids = fid, .field_types = ftype};
241+
bio::map_io::reader_options default_options{};
242242
bio::format_input_handler<bio::sam> input_handler{istream, default_options};
243243
record_t rec;
244244

0 commit comments

Comments
 (0)