Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
robertbindar committed Mar 29, 2024
1 parent 895760b commit 75e24ef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/src/unit-vfs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,8 @@ TEMPLATE_LIST_TEST_CASE("VFS: File I/O", "[vfs][uri][file_io]", AllBackends) {
// Getting file_size on a nonexistent blob shouldn't crash on Azure
uint64_t nbytes = 0;
URI non_existent = URI(path.to_string() + "non_existent");
require_tiledb_ok(vfs.file_size(non_existent, &nbytes));
check_tiledb_error_with(
vfs.file_size(non_existent, &nbytes), "Cannot get file size");

// Set up
bool exists = false;
Expand Down

0 comments on commit 75e24ef

Please sign in to comment.