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 b3b52eb commit 8d35c8cCopy full SHA for 8d35c8c
proc/community/src/test/java/org/neo4j/gds/kcore/KCoreDecompositionWriteProcTest.java
@@ -84,17 +84,17 @@ void shouldWrite(){
84
85
86
String query="CALL gds.kcore.write('graph', { writeProperty: 'coreValue'})";
87
- var expectedResultMap = Map.of
88
- (idFunction.of("z"), 0L,
89
- idFunction.of("a"), 1L,
90
- idFunction.of("b"), 1L,
91
- idFunction.of("c"), 2L,
92
- idFunction.of("d"), 2L,
93
- idFunction.of("e"), 2L,
94
- idFunction.of("f"), 2L,
95
- idFunction.of("g"), 2L,
96
- idFunction.of("h"), 2L
97
- );
+ var expectedResultMap = Map.of(
+ idFunction.of("z"), 0L,
+ idFunction.of("a"), 1L,
+ idFunction.of("b"), 1L,
+ idFunction.of("c"), 2L,
+ idFunction.of("d"), 2L,
+ idFunction.of("e"), 2L,
+ idFunction.of("f"), 2L,
+ idFunction.of("g"), 2L,
+ idFunction.of("h"), 2L
+ );
98
var rowCount = runQueryWithRowConsumer(query, row -> {
99
100
assertThat(row.getNumber("preProcessingMillis"))
0 commit comments