Skip to content

Commit 3e737db

Browse files
committed
Fix correct number of clusters in the tests
1 parent 66dfc87 commit 3e737db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_ilp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
class TestILP(unittest.TestCase):
2525
def test_circles(self) -> None:
2626
X = pd.read_csv("tests/datasets/circlesuneven.csv")
27-
ilp = ExactKMeans(X=X, k=4)
27+
ilp = ExactKMeans(X=X, k=3)
2828
res = ilp.fit()
2929

3030
print("Found objective value:", res["objective"])

0 commit comments

Comments
 (0)