Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
berombau committed Nov 25, 2024
1 parent 2c04f38 commit 000f285
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/models/test_FlowSOMModel.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ def test_reproducibility_seed(X):

assert all(y_pred_1 == y_pred_2)


def test_metacluster(X):
fsom = FlowSOM(X, n_clusters=10)
assert 10 == fsom.model.metacluster_model.n_clusters
fsom.metacluster(n_clusters=5)
assert 5 == fsom.model.metacluster_model.n_clusters
assert 5 == fsom.model.metacluster_model.n_clusters

0 comments on commit 000f285

Please sign in to comment.