From 9b2158e84cbcdc384db0bef9661acf620217c71b Mon Sep 17 00:00:00 2001 From: Thomas Newton Date: Sun, 20 Aug 2023 10:49:16 +0100 Subject: [PATCH] Update cpp/src/arrow/filesystem/azurefs_test.cc Co-authored-by: Sutou Kouhei --- cpp/src/arrow/filesystem/azurefs_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/src/arrow/filesystem/azurefs_test.cc b/cpp/src/arrow/filesystem/azurefs_test.cc index ec34db1a4cd99..f000ac6971651 100644 --- a/cpp/src/arrow/filesystem/azurefs_test.cc +++ b/cpp/src/arrow/filesystem/azurefs_test.cc @@ -125,7 +125,7 @@ TEST(AzureFileSystem, UploadThenDownload) { account_name, account_key); auto service_client = Azure::Storage::Blobs::BlobServiceClient( - "http://127.0.0.1:10000/devstoreaccount1", credential); + std::string("http://127.0.0.1:10000/") + account_name, credential); auto container_client = service_client.GetBlobContainerClient(container_name); container_client.CreateIfNotExists(); auto blob_client = container_client.GetBlockBlobClient(blob_name);