File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/test/java/org/springframework/data/jpa/repository Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ void equalsWorksForProxiedEntities() {
6868 assertThat (proxy ).isEqualTo (proxy );
6969 }
7070
71- @ Test // gh -1697
71+ @ Test // GH -1697
7272 void equalsWorksForProxiedEntitiesUsingGetById () {
7373
7474 CustomAbstractPersistable entity = repository .saveAndFlush (new CustomAbstractPersistable ());
@@ -80,7 +80,7 @@ void equalsWorksForProxiedEntitiesUsingGetById() {
8080 assertThat (proxy ).isEqualTo (proxy );
8181 }
8282
83- @ Test // gh-1697
83+ @ Test // GH-2232
8484 void equalsWorksForProxiedEntitiesUsingGetReferenceById () {
8585
8686 CustomAbstractPersistable entity = repository .saveAndFlush (new CustomAbstractPersistable ());
Original file line number Diff line number Diff line change @@ -1002,7 +1002,7 @@ void looksUpEntityReference() {
10021002 assertThat (result ).isEqualTo (firstUser );
10031003 }
10041004
1005- @ Test // gh -1697
1005+ @ Test // GH -1697
10061006 void looksUpEntityReferenceUsingGetById () {
10071007
10081008 flushTestUsers ();
@@ -1011,7 +1011,7 @@ void looksUpEntityReferenceUsingGetById() {
10111011 assertThat (result ).isEqualTo (firstUser );
10121012 }
10131013
1014- @ Test // gh-1697
1014+ @ Test // GH-2232
10151015 void looksUpEntityReferenceUsingGetReferenceById () {
10161016
10171017 flushTestUsers ();
You can’t perform that action at this time.
0 commit comments