@@ -145,7 +145,7 @@ TEST_CASE("C API: Test virtual filesystem", "[capi][vfs]") {
145145 std::string s3_bucket;
146146 if (s3_enabled) {
147147 SECTION (" Filesystem: S3" ) {
148- path = " s3://" + random_label (" tiledb- " ) + " /tiledb_test/" ;
148+ path = " s3://tiledb- " + random_label () + " /tiledb_test/" ;
149149 s3_bucket = path.substr (0 , path.find (" tiledb_test/" ));
150150
151151 // Check S3 bucket functionality
@@ -171,7 +171,7 @@ TEST_CASE("C API: Test virtual filesystem", "[capi][vfs]") {
171171 /* * Note: Azure testing not currently enabled.
172172 if (azure_enabled) {
173173 SECTION("Filesystem: Azure") {
174- path = "azure://" + random_label("tiledb-" ) + "/tiledb_test/";
174+ path = "azure://tiledb- " + random_label() + "/tiledb_test/";
175175 }
176176 } */
177177
@@ -403,7 +403,7 @@ TEST_CASE("C API: Test virtual filesystem", "[capi][vfs]") {
403403
404404 // Move from one bucket to another (only for S3)
405405 if (backend_is_s3) {
406- std::string bucket2 = " s3://" + random_label (" tiledb- " ) + " /" ;
406+ std::string bucket2 = " s3://tiledb- " + random_label () + " /" ;
407407 std::string subdir3 = bucket2 + " tiledb_test/subdir3/" ;
408408
409409 // Remove and recreate bucket if already exists
@@ -481,7 +481,7 @@ TEST_CASE("C API: Test virtual filesystem", "[capi][vfs]") {
481481
482482 // Copy from one bucket to another (only for S3)
483483 if (backend_is_s3) {
484- std::string bucket2 = " s3://" + random_label (" tiledb- " ) + " /" ;
484+ std::string bucket2 = " s3://tiledb- " + random_label () + " /" ;
485485 std::string subdir3 = bucket2 + " tiledb_test/subdir3/" ;
486486
487487 // Remove and recreate bucket if already exists
0 commit comments