Skip to content

Commit

Permalink
Remove unsanitized null from input strings column in rank_tests.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwendt committed Nov 22, 2023
1 parent cfa2d51 commit 5f54c93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/tests/reductions/rank_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ auto make_input_column()
auto make_strings_column()
{
return cudf::test::strings_column_wrapper{
{"0a", "0a", "2a", "2a", "3b", "5", "6c", "6c", "6c", "9", "9", "10d"},
{"0a", "0a", "2a", "2a", "3b", "5", "6c", "6c", "", "9", "9", "10d"},
cudf::test::iterators::null_at(8)};
}

Expand Down

0 comments on commit 5f54c93

Please sign in to comment.