Skip to content

Commit

Permalink
attempt to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl committed Jan 9, 2025
1 parent c97a166 commit 6562294
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/src/test-cppapi-current-domain.cc
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ TEST_CASE_METHOD(
CHECK_THROWS_WITH(
query_read2.submit(),
Catch::Matchers::ContainsSubstring(
"A range was set outside of the current domain."));
"was set outside of the current domain"));

tiledb::Query query_read3(ctx_, array_read, TILEDB_READ);
tiledb::Subarray subarray_read3(ctx_, array_read);
Expand All @@ -483,7 +483,7 @@ TEST_CASE_METHOD(
CHECK_THROWS_WITH(
query_read3.submit(),
Catch::Matchers::ContainsSubstring(
"A range was set outside of the current domain."));
"was set outside of the current domain"));

array_read.close();

Expand Down Expand Up @@ -588,7 +588,7 @@ TEST_CASE_METHOD(
.set_data_buffer("a", a_with_cd2)
.set_data_buffer("dim1", dim1_with_cd2);
auto matcher = Catch::Matchers::ContainsSubstring(
"A range was set outside of the current domain.");
"was set outside of the current domain");
REQUIRE_THROWS_WITH(query_for_cd2.submit(), matcher);
array_with_cd2.close();

Expand Down

0 comments on commit 6562294

Please sign in to comment.