Skip to content

Commit b381bd7

Browse files
committed
Fix rebase
1 parent a28b506 commit b381bd7

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

proc/community/src/test/java/org/neo4j/gds/CommunityProcCompanionTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ void minComponentSizeWithSparseProperties() {
167167
// we mimic the sparseness here through size > valueStored
168168
LongNodePropertyValues sparseProperties = new TestSparseNodePropertyValues(4, input::get);
169169

170-
var config = ConfigWithComponentSize.of(CypherMapWrapper.empty().withNumber("minComponentSize", 2L));
170+
var config = CommunityProcCompanionConfig.of(CypherMapWrapper.empty().withNumber("minCommunitySize", 2L));
171171

172172
var filteredProperties = CommunityProcCompanion.nodeProperties(
173173
config,
@@ -193,7 +193,7 @@ void consecutiveIdsWithSparseProperties() {
193193
// we mimic the sparseness here through size > valueStored
194194
LongNodePropertyValues sparseProperties = new TestSparseNodePropertyValues(4, input::get);
195195

196-
var config = ConfigWithComponentSize.of(CypherMapWrapper.create(Map.of("consecutiveIds", true)));
196+
var config = CommunityProcCompanionConfig.of(CypherMapWrapper.create(Map.of("consecutiveIds", true)));
197197

198198
var filteredProperties = CommunityProcCompanion.nodeProperties(
199199
config,

proc/similarity/src/test/java/org/neo4j/gds/similarity/knn/KnnStreamProcTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
*/
2020
package org.neo4j.gds.similarity.knn;
2121

22-
import org.assertj.core.api.Assertions;
2322
import org.junit.jupiter.api.Test;
2423
import org.neo4j.gds.AlgoBaseProc;
2524
import org.neo4j.gds.GdsCypher;
@@ -31,7 +30,7 @@
3130
import java.util.List;
3231
import java.util.Map;
3332

34-
import static org.assertj.core.api.Assertions.*;
33+
import static org.assertj.core.api.Assertions.assertThat;
3534

3635
class KnnStreamProcTest extends KnnProcTest<KnnStreamConfig> {
3736

0 commit comments

Comments
 (0)