Skip to content

Commit 2b11fb8

Browse files
committed
fix typo
1 parent 502cbcf commit 2b11fb8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

applications/graph-store-catalog/src/main/java/org/neo4j/gds/applications/graphstorecatalog/GraphStoreFromDatabaseLoader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public MemoryEstimation estimateMemoryUsageDuringLoading() {
7575

7676
@Override
7777
public MemoryEstimation estimateMemoryUsageAfterLoading() {
78-
return this.graphStoreFactory.estimateMemoryUsageDuringLoading();
78+
return this.graphStoreFactory.estimateMemoryUsageAfterLoading();
7979
}
8080

8181
private GraphStoreFactory<?, ?> graphStoreFactory() {

proc/machine-learning/src/test/java/org/neo4j/gds/ml/pipeline/node/classification/predict/NodeClassificationPipelinePredictProcTestUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ static Stream<Arguments> graphNameOrConfigurations() {
151151
Arguments.of("g", pipelineExecutorEstimation),
152152
Arguments.of(
153153
Map.of("nodeProjection", "*", "relationshipProjection", "*"),
154-
MemoryRange.of(296_072)
154+
MemoryRange.of(296_152)
155155
)
156156
);
157157
}

proc/machine-learning/src/test/java/org/neo4j/gds/ml/pipeline/node/classification/predict/NodeClassificationPipelineTrainProcTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ static Stream<Arguments> graphNameOrConfigurations() {
9595
),
9696
Arguments.of(
9797
Map.of("nodeProjection", "*", "relationshipProjection", "*"),
98-
MemoryRange.of(1_182_416, 1_214_376)
98+
MemoryRange.of(1_182_496, 1_214_456)
9999
)
100100
);
101101
}

0 commit comments

Comments
 (0)