We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e2cd81 commit 32514d3Copy full SHA for 32514d3
graphdatascience/tests/unit/procedure_surface/api/test_estimation_result.py
@@ -12,7 +12,8 @@ def test_estimation_result_initialization() -> None:
12
bytesMax=1000,
13
heapPercentageMin=0.1,
14
heapPercentageMax=0.5,
15
- )
+ ) # type: ignore
16
+
17
assert estimation_result.node_count == 5
18
assert estimation_result.relationship_count == 10
19
assert estimation_result.required_memory == "512MB"
@@ -35,7 +36,8 @@ def test_estimation_result_getitem() -> None:
35
36
37
38
39
40
41
assert estimation_result["node_count"] == 5
42
assert estimation_result["relationship_count"] == 10
43
assert estimation_result["required_memory"] == "512MB"
0 commit comments