Skip to content

Commit

Permalink
Small test tweak.
Browse files Browse the repository at this point in the history
  • Loading branch information
nvdbaranec committed Mar 9, 2022
1 parent e693562 commit 23cae44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/tests/reductions/reduction_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<reduce_aggregation>(1);
auto std_agg = cudf::make_std_aggregation<reduce_aggregation>(1);
auto var_agg = cudf::make_variance_aggregation<reduce_aggregation>(ddof);
auto std_agg = cudf::make_std_aggregation<reduce_aggregation>(ddof);

this->reduction_test(col, var, true, var_agg, output_type);
this->reduction_test(col, std, true, std_agg, output_type);
Expand Down

0 comments on commit 23cae44

Please sign in to comment.