This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new 99bdb80fc3 MINOR: [C++] Fix the simple typo in the test (#44747)
99bdb80fc3 is described below
commit 99bdb80fc307b4807860b2b7a4657bd3c6449295
Author: c8ef <[email protected]>
AuthorDate: Mon Nov 18 08:42:36 2024 +0800
MINOR: [C++] Fix the simple typo in the test (#44747)
### Rationale for this change
There is a minor typo in the test case.
### What changes are included in this PR?
Fix the simple typo in the test.
### Are these changes tested?
Yes.
### Are there any user-facing changes?
No.
Authored-by: c8ef <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
---
cpp/src/arrow/filesystem/azurefs_test.cc | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/cpp/src/arrow/filesystem/azurefs_test.cc
b/cpp/src/arrow/filesystem/azurefs_test.cc
index 242c2c2950..a04977bdee 100644
--- a/cpp/src/arrow/filesystem/azurefs_test.cc
+++ b/cpp/src/arrow/filesystem/azurefs_test.cc
@@ -475,10 +475,10 @@ TEST(AzureFileSystem, InitializeWithDefaultCredential) {
TEST(AzureFileSystem, InitializeWithDefaultCredentialImplicitly) {
AzureOptions options;
options.account_name = "dummy-account-name";
- AzureOptions explictly_default_options;
- explictly_default_options.account_name = "dummy-account-name";
- ARROW_EXPECT_OK(explictly_default_options.ConfigureDefaultCredential());
- ASSERT_TRUE(options.Equals(explictly_default_options));
+ AzureOptions explicitly_default_options;
+ explicitly_default_options.account_name = "dummy-account-name";
+ ARROW_EXPECT_OK(explicitly_default_options.ConfigureDefaultCredential());
+ ASSERT_TRUE(options.Equals(explicitly_default_options));
}
TEST(AzureFileSystem, InitializeWithAnonymousCredential) {