File tree 2 files changed +4
-4
lines changed
src/test/java/org/springframework/data/jpa/repository
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ void equalsWorksForProxiedEntities() {
68
68
assertThat (proxy ).isEqualTo (proxy );
69
69
}
70
70
71
- @ Test // gh -1697
71
+ @ Test // GH -1697
72
72
void equalsWorksForProxiedEntitiesUsingGetById () {
73
73
74
74
CustomAbstractPersistable entity = repository .saveAndFlush (new CustomAbstractPersistable ());
@@ -80,7 +80,7 @@ void equalsWorksForProxiedEntitiesUsingGetById() {
80
80
assertThat (proxy ).isEqualTo (proxy );
81
81
}
82
82
83
- @ Test // gh-1697
83
+ @ Test // GH-2232
84
84
void equalsWorksForProxiedEntitiesUsingGetReferenceById () {
85
85
86
86
CustomAbstractPersistable entity = repository .saveAndFlush (new CustomAbstractPersistable ());
Original file line number Diff line number Diff line change @@ -1002,7 +1002,7 @@ void looksUpEntityReference() {
1002
1002
assertThat (result ).isEqualTo (firstUser );
1003
1003
}
1004
1004
1005
- @ Test // gh -1697
1005
+ @ Test // GH -1697
1006
1006
void looksUpEntityReferenceUsingGetById () {
1007
1007
1008
1008
flushTestUsers ();
@@ -1011,7 +1011,7 @@ void looksUpEntityReferenceUsingGetById() {
1011
1011
assertThat (result ).isEqualTo (firstUser );
1012
1012
}
1013
1013
1014
- @ Test // gh-1697
1014
+ @ Test // GH-2232
1015
1015
void looksUpEntityReferenceUsingGetReferenceById () {
1016
1016
1017
1017
flushTestUsers ();
You can’t perform that action at this time.
0 commit comments