Skip to content

Commit ee24d2b

Browse files
committed
Fix failing GraphListProcTest
1 parent e8cf9e1 commit ee24d2b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

proc/catalog/src/test/java/org/neo4j/gds/catalog/GraphListProcTest.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -414,9 +414,10 @@ void listCypherAggregation() {
414414
"configuration", new Condition<>(config -> {
415415
assertThat(config)
416416
.asInstanceOf(stringObjectMapAssertFactory())
417-
.hasSize(2)
417+
.hasSize(3)
418418
.hasEntrySatisfying("creationTime", creationTimeAssertConsumer())
419-
.hasEntrySatisfying("jobId", jobId -> assertThat(jobId).isNotNull());
419+
.hasEntrySatisfying("jobId", jobId -> assertThat(jobId).isNotNull())
420+
.hasEntrySatisfying("undirectedRelationshipTypes", t -> assertThat(t).isEqualTo(List.of()));
420421

421422
return true;
422423
}, "Assert Cypher Aggregation `configuration` map"),

0 commit comments

Comments
 (0)