From eee28dff21bf17b9f95d40c2afbe74469a5d37e1 Mon Sep 17 00:00:00 2001 From: Nghia Truong Date: Tue, 16 Nov 2021 08:57:55 -0700 Subject: [PATCH] Fix comments --- cpp/tests/reductions/reduction_tests.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cpp/tests/reductions/reduction_tests.cpp b/cpp/tests/reductions/reduction_tests.cpp index 0f3d366bbeb..fc1bff0ec43 100644 --- a/cpp/tests/reductions/reduction_tests.cpp +++ b/cpp/tests/reductions/reduction_tests.cpp @@ -2251,7 +2251,8 @@ TEST_F(StructReductionTest, StructReductionMinMaxWithNulls) "€1" /*NULL*/, "wut"}, nulls_at({2, 7})}; - auto child2 = INTS_CW{{1, 2, 3 /*NULL*/, 4, 5, 6, 7, 8 /*NULL*/, 9, 10}, nulls_at({2, 7})}; + auto child2 = INTS_CW{{1, 2, 3 /*NULL*/, 4 /*NULL*/, 5, 6, 7, 8 /*NULL*/, 9 /*NULL*/, 10}, + nulls_at({2, 7})}; return STRUCTS_CW{{child1, child2}, nulls_at({3, 8})}; }();