Skip to content

Commit 3e00738

Browse files
authored
Update test_hdbscan.py
1 parent a1a7b74 commit 3e00738

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fast_hdbscan/tests/test_hdbscan.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def test_fhdbscan_allow_single_cluster_with_epsilon():
149149
).fit(no_structure)
150150
unique_labels, counts = np.unique(c.labels_, return_counts=True)
151151
assert len(unique_labels) == 8
152-
assert counts[unique_labels == -1] == 65
152+
assert counts[unique_labels == -1] == 68
153153

154154
# An epsilon of 0.2 will produce 2 noise points and 2 labels
155155
# Allow single cluster does not prevent applying the epsilon threshold.

0 commit comments

Comments
 (0)