Skip to content

Commit 6a29dc1

Browse files
committed
Remove weird assertion in (random) graph list
@DarthMax The generated graph does not have relationship properties, but you still added the assertion that it should have one. Are we missing something?
1 parent b1ce61f commit 6a29dc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ void listGeneratedGraph() {
263263
}, "Assert generated `configuration` map"),
264264
"schema", map(
265265
"nodes", map("__ALL__", map()),
266-
"relationships", map( "REL", map("PROPERTY", "Float (DefaultValue(NaN), PERSISTENT, Aggregation.DEFAULT)")),
266+
"relationships", map("REL", map()),
267267
"graphProperties", map()
268268
),
269269
"nodeCount", 10L,

0 commit comments

Comments
 (0)