Skip to content

Commit

Permalink
Address PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Sep 30, 2024
1 parent a8860c3 commit 754be52
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions cpp/tests/structs/structs_column_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -635,9 +635,8 @@ TEST_F(StructColumnWrapperTest, TestStructsColumnWithEmptyChild)
auto mask_vec = std::vector<bool>{true, false, false};
auto [null_mask, null_count] =
cudf::test::detail::make_null_mask(mask_vec.begin(), mask_vec.end());
auto structs_col =
cudf::make_structs_column(num_rows, std::move(cols), null_count, std::move(null_mask));
EXPECT_NO_THROW(auto _ = structs_col->view());
EXPECT_NO_THROW(auto structs_col = cudf::make_structs_column(
num_rows, std::move(cols), null_count, std::move(null_mask)));
}

CUDF_TEST_PROGRAM_MAIN()

0 comments on commit 754be52

Please sign in to comment.