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 2763397
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/src/unit-vfs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ 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(!vfs.file_size(non_existent, &nbytes).ok());

// Set up
bool exists = false;
Expand Down

0 comments on commit 2763397

Please sign in to comment.