Skip to content

Commit a1e1284

Browse files
committed
Debug failing windows UT.
1 parent d29f1b7 commit a1e1284

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

tiledb/sm/filesystem/azure.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ std::vector<std::string> Azure::ls(
639639
}
640640

641641
std::vector<directory_entry> Azure::ls_with_sizes(const URI& uri, bool) const {
642-
return ls_with_sizes(uri, "/");
642+
return ls_with_sizes(uri, std::string("/"));
643643
}
644644

645645
std::vector<directory_entry> Azure::ls_with_sizes(

tiledb/sm/filesystem/test/unit_uri.cc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -332,8 +332,9 @@ TEST_CASE("URI: Test is_timestamped_name", "[uri][is_timestamped_name]") {
332332
};
333333
for (const auto& test : test_uris) {
334334
URI uri(test.first);
335-
CHECK(uri.is_timestamped_name() == test.second);
336-
INFO(test.first);
335+
DYNAMIC_SECTION("Checking is_timestamped_name URI: " << test.first) {
336+
CHECK(uri.is_timestamped_name() == test.second);
337+
}
337338
}
338339
}
339340

0 commit comments

Comments
 (0)