diff --git a/cpp/tests/reductions/reduction_tests.cpp b/cpp/tests/reductions/reduction_tests.cpp index a8b99f203d0..568ff6d62d4 100644 --- a/cpp/tests/reductions/reduction_tests.cpp +++ b/cpp/tests/reductions/reduction_tests.cpp @@ -1915,8 +1915,8 @@ TYPED_TEST(DictionaryReductionTest, DISABLED_VarStd) cudf::size_type const ddof = 1; double var = calc_var(v, v.size(), ddof); double std = std::sqrt(var); - auto var_agg = cudf::make_variance_aggregation(1); - auto std_agg = cudf::make_std_aggregation(1); + auto var_agg = cudf::make_variance_aggregation(ddof); + auto std_agg = cudf::make_std_aggregation(ddof); this->reduction_test(col, var, true, var_agg, output_type); this->reduction_test(col, std, true, std_agg, output_type);