From 9e8bdfc54a5524efe2413388ccedd69cfd3f5c16 Mon Sep 17 00:00:00 2001 From: Nghia Truong Date: Mon, 8 Feb 2021 19:00:37 -0700 Subject: [PATCH] Remove std::cout and print in the scatter test function EmptyListsOfNullableStrings. (#7342) Remove `std::cout` and `print` in the scatter test function EmptyListsOfNullableStrings. This fixes https://github.com/rapidsai/cudf/issues/7341 Authors: - Nghia Truong (@ttnghia) Approvers: - David (@davidwendt) - @nvdbaranec URL: https://github.com/rapidsai/cudf/pull/7342 --- cpp/tests/copying/scatter_list_tests.cu | 5 ----- 1 file changed, 5 deletions(-) diff --git a/cpp/tests/copying/scatter_list_tests.cu b/cpp/tests/copying/scatter_list_tests.cu index 2cf4f7b1f31..92f1d44c46f 100644 --- a/cpp/tests/copying/scatter_list_tests.cu +++ b/cpp/tests/copying/scatter_list_tests.cu @@ -314,11 +314,6 @@ TEST_F(ScatterListsTest, EmptyListsOfNullableStrings) 0, {}); - std::cout << "Expected: " << std::endl; - print(expected_lists->view()); - std::cout << "Received: " << std::endl; - print(ret->get_column(0)); - CUDF_TEST_EXPECT_COLUMNS_EQUIVALENT(expected_lists->view(), ret->get_column(0)); }