Skip to content

Commit 68ce980

Browse files
committed
ARROW-8025: [C++][CI][FOLLOWUP] Fix test compilation failure due to conflicting changes in scalar_cast_test.cc
Closes #7529 from wesm/ARROW-8025-followup Authored-by: Wes McKinney <wesm@apache.org> Signed-off-by: Wes McKinney <wesm@apache.org>
1 parent d1aa97a commit 68ce980

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cpp/src/arrow/compute/kernels/scalar_cast_test.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,8 +246,8 @@ class TestCast : public TestBase {
246246
ArrayFromVector<SourceType, std::string>(src_type, valid, strings, &array);
247247
CheckZeroCopy(*array, dest_type);
248248

249-
CheckCase<SourceType, std::string, DestType, std::string>(
250-
src_type, strings, all, dest_type, strings, options);
249+
CheckCase<SourceType, DestType>(src_type, strings, all, dest_type, strings, options,
250+
/*check_scalar=*/false);
251251
}
252252

253253
template <typename DestType>

0 commit comments

Comments
 (0)