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 e8cf9e1 commit ee24d2bCopy full SHA for ee24d2b
proc/catalog/src/test/java/org/neo4j/gds/catalog/GraphListProcTest.java
@@ -414,9 +414,10 @@ void listCypherAggregation() {
414
"configuration", new Condition<>(config -> {
415
assertThat(config)
416
.asInstanceOf(stringObjectMapAssertFactory())
417
- .hasSize(2)
+ .hasSize(3)
418
.hasEntrySatisfying("creationTime", creationTimeAssertConsumer())
419
- .hasEntrySatisfying("jobId", jobId -> assertThat(jobId).isNotNull());
+ .hasEntrySatisfying("jobId", jobId -> assertThat(jobId).isNotNull())
420
+ .hasEntrySatisfying("undirectedRelationshipTypes", t -> assertThat(t).isEqualTo(List.of()));
421
422
return true;
423
}, "Assert Cypher Aggregation `configuration` map"),
0 commit comments