Skip to content

Commit

Permalink
Fix incorrect null mask specification in one test
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Dec 18, 2023
1 parent 1d845db commit b19bbf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/tests/copying/get_value_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit b19bbf8

Please sign in to comment.