Skip to content

Commit

Permalink
Fix style error in drop_list_duplicates_tests.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
ttnghia committed Mar 12, 2021
1 parent 36d5822 commit ae68606
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cpp/tests/lists/drop_list_duplicates_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ TEST_F(DropListDuplicatesTest, InvalidCasesTests)
EXPECT_THROW(
cudf::lists::drop_list_duplicates(cudf::lists_column_view{FLT_LCW{FLT_LCW{{1, 2}, {3}}}}),
cudf::logic_error);
EXPECT_THROW(cudf::lists::drop_list_duplicates(
cudf::lists_column_view{STR_LCW{STR_LCW{STR_LCW{"string"}}}}),
cudf::logic_error);
EXPECT_THROW(
cudf::lists::drop_list_duplicates(cudf::lists_column_view{STR_LCW{STR_LCW{STR_LCW{"string"}}}}),
cudf::logic_error);
}

TEST_F(DropListDuplicatesTest, FloatingPointTestsNonNull)
Expand Down

0 comments on commit ae68606

Please sign in to comment.