Skip to content

Commit

Permalink
Ensure proper stream is used in test
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmaynard committed Jul 2, 2024
1 parent bf9693e commit a3e2e61
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 @@ -98,7 +98,8 @@ TEST_F(MergeTest, KeysWithNulls)
auto valids2 =
cudf::detail::make_counting_transform_iterator(0, [](auto row) { return row % 15 != 0; });
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}});
auto all_data = cudf::concatenate(std::vector<cudf::column_view>{{data1, data2}},
cudf::test::get_default_stream());

std::vector<cudf::order> column_orders{cudf::order::ASCENDING, cudf::order::DESCENDING};
std::vector<cudf::null_order> null_precedences{cudf::null_order::AFTER, cudf::null_order::BEFORE};
Expand Down

0 comments on commit a3e2e61

Please sign in to comment.