Skip to content

Commit 08bcf55

Browse files
committed
Polishing.
Corrected issue number comments. See #2232 Original pull request #2398
1 parent 0926d4b commit 08bcf55

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/test/java/org/springframework/data/jpa/repository/AbstractPersistableIntegrationTests.java

+2-2
Original file line numberDiff line numberDiff 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());

src/test/java/org/springframework/data/jpa/repository/UserRepositoryTests.java

+2-2
Original file line numberDiff line numberDiff 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();

0 commit comments

Comments
 (0)