Skip to content

Commit

Permalink
Improve naming
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Aug 24, 2023
1 parent 691a8f8 commit 4536fff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cpp/src/arrow/filesystem/azurefs_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -133,10 +133,10 @@ TEST(AzureFileSystem, UploadThenDownload) {
std::vector<uint8_t> buffer(blob_content.begin(), blob_content.end());
blob_client.UploadFrom(buffer.data(), buffer.size());

std::vector<uint8_t> buffer2(blob_content.size());
blob_client.DownloadTo(buffer2.data(), buffer2.size());
std::vector<uint8_t> downloaded_content(blob_content.size());
blob_client.DownloadTo(downloaded_content.data(), downloaded_content.size());

EXPECT_EQ(std::string(buffer2.begin(), buffer2.end()), blob_content);
EXPECT_EQ(std::string(downloaded_content.begin(), downloaded_content.end()), blob_content);
}

TEST(AzureFileSystem, InitializeCredentials) {
Expand Down

0 comments on commit 4536fff

Please sign in to comment.