File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
cypher-aggregation/src/test/java/org/neo4j/gds/projection Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -182,13 +182,10 @@ void testDifferentPropertySchemas() {
182182
183183 var graph = GraphStoreCatalog .get ("" , db .databaseName (), "g" ).graphStore ().getUnion ();
184184
185- // these fail to separate the property schemas
186185 assertThat (graph .schema ().nodeSchema ().get (NodeLabel .of ("a" )).properties ().keySet ()).isEmpty ();
187186 assertThat (graph .schema ().nodeSchema ().get (NodeLabel .of ("b" )).properties ().keySet ()).containsExactly ("x" );
188187 assertThat (graph .schema ().nodeSchema ().get (NodeLabel .of ("c" )).properties ().keySet ()).containsExactly ("y" );
189188
190- // these also fail like that, but if one of them has no props (like rel does) no properties are retained at all
191- // so 2 problems to fix
192189 assertThat (graph
193190 .schema ()
194191 .relationshipSchema ()
You can’t perform that action at this time.
0 commit comments