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 1cf3204 commit f5a5118
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cpp/tests/streams/merge_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,9 @@ TYPED_TEST(MergeTest_, SingleTableInput)
cudf::table_view left_view{{colWrap1}};

std::unique_ptr<cudf::table> p_outputTable;
CUDF_EXPECT_NO_THROW(p_outputTable =
cudf::merge({left_view}, key_cols, column_order, null_precedence));
CUDF_EXPECT_NO_THROW(
p_outputTable = cudf::merge(
{left_view}, key_cols, column_order, null_precedence, cudf::test::get_default_stream()));

auto input_column_view{left_view.column(0)};
auto output_column_view{p_outputTable->view().column(0)};
Expand Down

0 comments on commit f5a5118

Please sign in to comment.