Skip to content

Commit 58b8a6f

Browse files
authored
GH-46439: [C++] Remove unneeded namespace prefix in test_util_internal.h (#46695)
### Rationale for this change Addresses #46180 (comment). One of three PRs to resolve #46439. ### What changes are included in this PR? - Remove unneeded namespace prefix in test_util_internal.h. ### Are these changes tested? Yes. Impacted tests still pass. ### Are there any user-facing changes? No. * GitHub Issue: #46439 Authored-by: Bryce Mecum <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
1 parent b119f5e commit 58b8a6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cpp/src/arrow/dataset/test_util_internal.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2139,8 +2139,8 @@ class WriteFileSystemDatasetMixin : public MakeFileSystemDatasetMixin {
21392139
actual_struct = std::dynamic_pointer_cast<Array>(struct_array);
21402140
}
21412141

2142-
auto expected_struct = arrow::ArrayFromJSON(
2143-
struct_(expected_physical_schema_->fields()), file_contents->second);
2142+
auto expected_struct = ArrayFromJSON(struct_(expected_physical_schema_->fields()),
2143+
file_contents->second);
21442144

21452145
AssertArraysEqual(*expected_struct, *actual_struct, /*verbose=*/true);
21462146
}

0 commit comments

Comments
 (0)