Skip to content

Commit

Permalink
Remove std::cout and print in the scatter test function EmptyListsOfN…
Browse files Browse the repository at this point in the history
…ullableStrings. (#7342)

Remove `std::cout` and `print` in the scatter test function EmptyListsOfNullableStrings.

This fixes #7341

Authors:
  - Nghia Truong (@ttnghia)

Approvers:
  - David (@davidwendt)
  - @nvdbaranec

URL: #7342
  • Loading branch information
ttnghia authored Feb 9, 2021
1 parent ac02ae3 commit 9e8bdfc
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions cpp/tests/copying/scatter_list_tests.cu
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}

Expand Down

0 comments on commit 9e8bdfc

Please sign in to comment.