Skip to content

Commit

Permalink
Correct an format string error message
Browse files Browse the repository at this point in the history
  • Loading branch information
eddelbuettel committed Apr 2, 2024
1 parent 5450dfe commit a27a233
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libtiledbsoma/src/utils/arrow_adapter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ enum ArrowType ArrowAdapter::to_nanoarrow_type(std::string_view sv) {
return NANOARROW_TYPE_LARGE_BINARY;

Check warning on line 584 in libtiledbsoma/src/utils/arrow_adapter.cc

View check run for this annotation

Codecov / codecov/patch

libtiledbsoma/src/utils/arrow_adapter.cc#L546-L584

Added lines #L546 - L584 were not covered by tests
else
throw TileDBSOMAError(fmt::format(
"ArrowAdapter: Unsupported TileDB datatype string: {} ", sv));
"ArrowAdapter: Unsupported Arrow format: {} ", sv));

Check warning on line 587 in libtiledbsoma/src/utils/arrow_adapter.cc

View check run for this annotation

Codecov / codecov/patch

libtiledbsoma/src/utils/arrow_adapter.cc#L586-L587

Added lines #L586 - L587 were not covered by tests
}

} // namespace tiledbsoma

0 comments on commit a27a233

Please sign in to comment.