Skip to content

Commit

Permalink
Correct issues found by CI
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmaynard committed Jul 1, 2024
1 parent f5a5118 commit 5058e23
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cpp/tests/streams/merge_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ TEST_F(MergeTest, KeysWithNulls)
cudf::test::fixed_width_column_wrapper<int32_t> data2(data_iter, data_iter + nrows, valids2);
auto all_data = cudf::concatenate(std::vector<cudf::column_view>{{data1, data2}});

std::vector<cudf::order> column_orders{cudf::order::ASCENDING, cudf::order::DESCENDING};
std::vector<cudf::order> column_orders{
cudf::order::ASCENDING, cudf::order::DESCENDING, cudf::test::get_default_stream()};
std::vector<cudf::null_order> null_precedences{cudf::null_order::AFTER, cudf::null_order::BEFORE};

for (auto co : column_orders)
Expand Down

0 comments on commit 5058e23

Please sign in to comment.