Skip to content

Commit 9fd16e4

Browse files
committed
iter
1 parent e26dd57 commit 9fd16e4

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

imblearn/under_sampling/_prototype_generation/tests/test_cluster_centroids.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -112,15 +112,6 @@ def test_fit_resample_error(cluster_centroids_params, err_msg):
112112
cc.fit_resample(X, Y)
113113

114114

115-
def test_cluster_centroids_n_jobs():
116-
# check that we deprecate the `n_jobs` parameter.
117-
cc = ClusterCentroids(n_jobs=1)
118-
with pytest.warns(FutureWarning) as record:
119-
cc.fit_resample(X, Y)
120-
assert len(record) == 1
121-
assert "'n_jobs' was deprecated" in record[0].message.args[0]
122-
123-
124115
def test_cluster_centroids_hard_target_class():
125116
# check that the samples selecting by the hard voting corresponds to the
126117
# targeted class

0 commit comments

Comments
 (0)