From 9ac5939e81128793363fd3c045775168b7dd08ec Mon Sep 17 00:00:00 2001 From: Mithun RK Date: Fri, 29 Oct 2021 11:42:29 -0700 Subject: [PATCH] Removed inadvertent printing in tests. --- cpp/tests/copying/segmented_gather_list_tests.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cpp/tests/copying/segmented_gather_list_tests.cpp b/cpp/tests/copying/segmented_gather_list_tests.cpp index a15c96cc5a8..72d3d334d64 100644 --- a/cpp/tests/copying/segmented_gather_list_tests.cpp +++ b/cpp/tests/copying/segmented_gather_list_tests.cpp @@ -315,10 +315,6 @@ TYPED_TEST(SegmentedGatherTest, GatherOnNonCompactedNullLists) auto const expected = LCW{{{4, 3, 2, 1}, {5}, {6, 7}, {8, 0, 9}, {}, {{X}, all_nulls()}, {4, 5}}, null_at(5)}; auto const results = segmented_gather(lists_column_view{*input}, lists_column_view{gather_map}); - std::cout << "Results: " << std::endl; - cudf::test::print(*results); - std::cout << "Expected: " << std::endl; - cudf::test::print(expected); CUDF_TEST_EXPECT_COLUMNS_EQUIVALENT(results->view(), expected); }