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 5529293 commit 7228a19Copy full SHA for 7228a19
algo/src/test/java/org/neo4j/gds/similarity/filteredknn/FilteredKnnIdMappingTest.java
@@ -74,7 +74,8 @@ void shouldIdMapTheSourceNodeFilter() {
74
var sourceNodesInResult = result
75
.similarityResultStream()
76
.map(res -> res.node1)
77
+ .map(graph::toOriginalNodeId)
78
.collect(Collectors.<Long>toSet());
- assertThat(sourceNodesInResult).containsExactly(0L);
79
+ assertThat(sourceNodesInResult).containsExactly(lowestNeoId);
80
}
81
0 commit comments