Skip to content

Commit 0f29bd1

Browse files
committed
Fix estimate kmeans
on CI this has a higher estimation for some reason .. maybe more cpus available?
1 parent 21b6722 commit 0f29bd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphdatascience/tests/integrationV2/procedure_surface/arrow/community/test_kmeans_arrow_endpoints.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def test_kmeans_estimate(kmeans_endpoints: KMeansArrowEndpoints, sample_graph: G
120120

121121
assert result.node_count == 4
122122
assert result.relationship_count == 0
123-
assert "Bytes" in result.required_memory
123+
assert "Bytes" in result.required_memory or "KiB" in result.required_memory
124124
assert result.bytes_min > 0
125125
assert result.bytes_max > 0
126126
assert result.heap_percentage_min > 0

0 commit comments

Comments
 (0)