Skip to content

Commit

Permalink
Fix test for imputation to handle Dask arrays without raising errors
Browse files Browse the repository at this point in the history
  • Loading branch information
aGuyLearning committed Jan 31, 2025
1 parent a9da3c5 commit 16a5817
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/preprocessing/test_imputation.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ def test_miceforest_impute_numerical_data(impute_iris_adata):
"array_type,expected_error",
[
(np.array, None),
(da.array, NotImplementedError),
(da.array, None),
(sparse.csr_matrix, NotImplementedError),
],
)
Expand Down

0 comments on commit 16a5817

Please sign in to comment.