diff --git a/cpp/tests/groupby/max_tests.cpp b/cpp/tests/groupby/max_tests.cpp index ca6b0becde7..491e6927304 100644 --- a/cpp/tests/groupby/max_tests.cpp +++ b/cpp/tests/groupby/max_tests.cpp @@ -238,9 +238,17 @@ TEST_F(groupby_dictionary_max_test, fixed_width) fixed_width_column_wrapper expect_vals_w({ 0xABC, 0xFFF, 0xF1 }); // clang-format on - test_single_agg(keys, vals, expect_keys, expect_vals_w, cudf::make_max_aggregation()); - test_single_agg( - keys, vals, expect_keys, expect_vals_w, cudf::make_max_aggregation(), force_use_sort_impl::YES); + test_single_agg(keys, + vals, + expect_keys, + expect_vals_w, + cudf::make_max_aggregation()); + test_single_agg(keys, + vals, + expect_keys, + expect_vals_w, + cudf::make_max_aggregation(), + force_use_sort_impl::YES); } template diff --git a/cpp/tests/groupby/min_tests.cpp b/cpp/tests/groupby/min_tests.cpp index 44193bd5f6d..4f8db1d750c 100644 --- a/cpp/tests/groupby/min_tests.cpp +++ b/cpp/tests/groupby/min_tests.cpp @@ -238,9 +238,17 @@ TEST_F(groupby_dictionary_min_test, fixed_width) fixed_width_column_wrapper expect_vals_w({ 0xAAA, 0xBAA, 0x01 }); // clang-format on - test_single_agg(keys, vals, expect_keys, expect_vals_w, cudf::make_min_aggregation()); - test_single_agg( - keys, vals, expect_keys, expect_vals_w, cudf::make_min_aggregation(), force_use_sort_impl::YES); + test_single_agg(keys, + vals, + expect_keys, + expect_vals_w, + cudf::make_min_aggregation()); + test_single_agg(keys, + vals, + expect_keys, + expect_vals_w, + cudf::make_min_aggregation(), + force_use_sort_impl::YES); } template