Skip to content

Commit 375f61b

Browse files
committed
Update test.
1 parent 4cd1e67 commit 375f61b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,8 @@ TEST(InversePermutation, DefaultOptions) {
162162
ARROW_SCOPED_TRACE("Default options values");
163163
InversePermutationOptions options;
164164
ASSERT_EQ(options.max_index, -1);
165-
ASSERT_EQ(options.output_type, nullptr);
165+
ASSERT_EQ(options.output_type, std::nullopt);
166+
ASSERT_FALSE(options.output_type.has_value());
166167
}
167168
{
168169
ARROW_SCOPED_TRACE("Default options semantics");

0 commit comments

Comments
 (0)