From b19bbf8846001c726a7ae30ca7b2b4540133ade5 Mon Sep 17 00:00:00 2001 From: Vyas Ramasubramani Date: Mon, 18 Dec 2023 22:31:58 +0000 Subject: [PATCH] Fix incorrect null mask specification in one test --- cpp/tests/copying/get_value_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/tests/copying/get_value_tests.cpp b/cpp/tests/copying/get_value_tests.cpp index d322fbe11f2..d58aeb2ddfc 100644 --- a/cpp/tests/copying/get_value_tests.cpp +++ b/cpp/tests/copying/get_value_tests.cpp @@ -756,7 +756,7 @@ TYPED_TEST(ListGetStructValueTest, NestedGetNonNullEmpty) this->make_test_lists_column(3, {0, 1, 1, 2}, std::move(list_column), {1, 1, 1}); auto expected_data = - this->make_test_lists_column(0, {0}, this->zero_length_struct().release(), {1}); + this->make_test_lists_column(0, {0}, this->zero_length_struct().release(), {}); cudf::size_type index = 1; auto s = cudf::get_element(list_column_nested->view(), index);