Skip to content

Commit 9ad48cc

Browse files
committed
Fix compilation after rebase
1 parent 1f82e1a commit 9ad48cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

graph-schema-api/src/test/java/org/neo4j/gds/api/schema/RelationshipSchemaTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,10 +277,10 @@ void testBuildProperties() {
277277
void shouldCreateDeepCopiesWhenFiltering() {
278278
var relType = RelationshipType.of("A");
279279
var relationshipSchema = RelationshipSchema.empty();
280-
relationshipSchema.getOrCreateRelationshipType(relType, NATURAL).addProperty("prop", ValueType.LONG);
280+
relationshipSchema.getOrCreateRelationshipType(relType, Direction.DIRECTED).addProperty("prop", ValueType.LONG);
281281
var filteredSchema = relationshipSchema.filter(Set.of(relType));
282282
filteredSchema
283-
.getOrCreateRelationshipType(relType, NATURAL).addProperty("shouldNotExistInOriginalSchema", ValueType.LONG);
283+
.getOrCreateRelationshipType(relType, Direction.DIRECTED).addProperty("shouldNotExistInOriginalSchema", ValueType.LONG);
284284

285285
assertThat(relationshipSchema.get(relType).properties())
286286
.doesNotContainKey("shouldNotExistInOriginalSchema")

0 commit comments

Comments
 (0)