Skip to content

Commit

Permalink
Revert azurite storage account name
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom-Newton committed Aug 14, 2023
1 parent 9536a38 commit d3394e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/src/arrow/filesystem/azurefs_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ using ::testing::NotNull;
class AzuriteEnv : public ::testing::Environment {
public:
AzuriteEnv() {
account_name_ = "account_name";
account_name_ = "devstoreaccount1";
account_key_ =
"Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/"
"KBHBeksoGMGw==";
Expand Down Expand Up @@ -125,7 +125,7 @@ TEST(AzureFileSystem, UploadThenDownload) {
account_name, account_key);

auto serviceClient = Azure::Storage::Blobs::BlobServiceClient(
"http://127.0.0.1:10000/account_name", credential);
"http://127.0.0.1:10000/devstoreaccount1", credential);
auto containerClient = serviceClient.GetBlobContainerClient(containerName);
containerClient.CreateIfNotExists();
auto blobClient = containerClient.GetBlockBlobClient(blobName);
Expand Down

0 comments on commit d3394e3

Please sign in to comment.