Skip to content

Commit 70287ba

Browse files
authored
modifying test to use new keyword (#215)
1 parent 177b14c commit 70287ba

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pgamit/tests/test_make_clusters.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,9 @@ def test_max_clust_expansion(min_clust, max_clust, neighbors, overlap):
5858
max_iter=8000, random_state=42)
5959
clust.fit(data)
6060

61-
OC = over_cluster(clust.labels_, data, metric='euclidean',
62-
neighbors=neighbors, overlap_points=overlap)
61+
OC = over_cluster(clust.labels_, data, metric='euclidean',
62+
neighbors=neighbors, overlap_points=overlap,
63+
method='dynamic')
6364

6465
expanded_sizes = np.sum(OC, axis=1)
6566
_, original_sizes = np.unique(clust.labels_, return_counts=True)

0 commit comments

Comments
 (0)