Skip to content

Commit

Permalink
fix: pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
shenxiangzhuang committed Jan 14, 2025
1 parent 9b1d299 commit eecc382
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/aggregation/test_ds_aggregation.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,9 @@ def test_aggregate_hds_on_toy_ysda(
)

assert_series_equal(
OneCoinDawidSkene(n_iter=n_iter, tol=tol).fit_predict(toy_answers_df).sort_index(),
OneCoinDawidSkene(n_iter=n_iter, tol=tol)
.fit_predict(toy_answers_df)
.sort_index(),
toy_ground_truth_df.sort_index(),
)

Expand Down Expand Up @@ -441,7 +443,9 @@ def test_aggregate_hds_on_simple(
)

assert_series_equal(
OneCoinDawidSkene(n_iter=n_iter, tol=tol).fit_predict(simple_answers_df).sort_index(),
OneCoinDawidSkene(n_iter=n_iter, tol=tol)
.fit_predict(simple_answers_df)
.sort_index(),
simple_ground_truth.sort_index(),
)

Expand Down

0 comments on commit eecc382

Please sign in to comment.