Skip to content

Commit ed6973d

Browse files
committed
GH-2289 - Because 2189 != 2289.
1 parent 790b67c commit ed6973d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/test/java/org/springframework/data/neo4j/core/mapping/DefaultNeo4jPersistentEntityTest.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ void doesFailOnRelationshipPropertiesWithMissingTargetNode() {
131131
.withMessageContaining("Missing @TargetNode declaration in");
132132
}
133133

134-
@Test // DATAGRAPH-2189
134+
@Test // GH-2289
135135
void correctlyFindRelationshipObverseSameEntity() {
136136
Neo4jMappingContext neo4jMappingContext = new Neo4jMappingContext();
137137
Neo4jPersistentEntity<?> persistentEntity = neo4jMappingContext.getPersistentEntity(EntityWithBidirectionalRelationship.class);
@@ -141,7 +141,7 @@ void correctlyFindRelationshipObverseSameEntity() {
141141
});
142142
}
143143

144-
@Test // DATAGRAPH-2189
144+
@Test // GH-2289
145145
void correctlyFindRelationshipObverse() {
146146
Neo4jMappingContext neo4jMappingContext = new Neo4jMappingContext();
147147
Neo4jPersistentEntity<?> persistentEntity = neo4jMappingContext.getPersistentEntity(EntityWithBidirectionalRelationshipToOtherEntity.class);
@@ -156,7 +156,7 @@ void correctlyFindRelationshipObverse() {
156156
});
157157
}
158158

159-
@Test // DATAGRAPH-2189
159+
@Test // GH-2289
160160
void correctlyFindRelationshipObverseWithRelationshipProperties() {
161161
Neo4jMappingContext neo4jMappingContext = new Neo4jMappingContext();
162162
Neo4jPersistentEntity<?> persistentEntity = neo4jMappingContext.getPersistentEntity(EntityWithBidirectionalRelationshipToOtherEntityWithRelationshipProperties.class);
@@ -171,7 +171,7 @@ void correctlyFindRelationshipObverseWithRelationshipProperties() {
171171
});
172172
}
173173

174-
@Test // DATAGRAPH-2189
174+
@Test // GH-2289
175175
void correctlyFindSameEntityRelationshipObverseWithRelationshipProperties() {
176176
Neo4jMappingContext neo4jMappingContext = new Neo4jMappingContext();
177177
Neo4jPersistentEntity<?> persistentEntity = neo4jMappingContext.getPersistentEntity(EntityWithBidirectionalRelationshipProperties.class);
@@ -181,7 +181,7 @@ void correctlyFindSameEntityRelationshipObverseWithRelationshipProperties() {
181181
});
182182
}
183183

184-
@Test // DATAGRAPH-2189
184+
@Test // GH-2289
185185
void correctlyDontFindRelationshipObverse() {
186186
Neo4jMappingContext neo4jMappingContext = new Neo4jMappingContext();
187187
Neo4jPersistentEntity<?> persistentEntity = neo4jMappingContext.getPersistentEntity(EntityLooksLikeHasObserve.class);

0 commit comments

Comments
 (0)