Skip to content

Commit

Permalink
tests: passing std::string instead of fs::path in cobs::ClassicSearch…
Browse files Browse the repository at this point in the history
… to make Mac OS builds work
  • Loading branch information
leoisl committed Dec 7, 2023
1 parent 4b582df commit e630069
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/non_acgt_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class non_acgt_test : public ::testing::Test

TEST_F(non_acgt_test, non_acgt_test_main_test) {
fs::path index_file{base_dir / "index.cobs_classic"};
cobs::ClassicSearch s(index_file);
cobs::ClassicSearch s(index_file.string());
fs::path query_file{base_dir / "test_1.fastq.gz"};
auto query_out_filepath = work_dir / "query.out";
std::ofstream query_out_fh(query_out_filepath.string());
Expand Down

0 comments on commit e630069

Please sign in to comment.