Polishing.

Corrected issue number comments.

See #2232
Original pull request #2398
This commit is contained in:
Jens Schauder
2022-01-05 10:29:54 +01:00
parent 0926d4bfb6
commit 08bcf5571f
2 changed files with 4 additions and 4 deletions

View File

@@ -68,7 +68,7 @@ public class AbstractPersistableIntegrationTests {
assertThat(proxy).isEqualTo(proxy);
}
@Test // gh-1697
@Test // GH-1697
void equalsWorksForProxiedEntitiesUsingGetById() {
CustomAbstractPersistable entity = repository.saveAndFlush(new CustomAbstractPersistable());
@@ -80,7 +80,7 @@ public class AbstractPersistableIntegrationTests {
assertThat(proxy).isEqualTo(proxy);
}
@Test // gh-1697
@Test // GH-2232
void equalsWorksForProxiedEntitiesUsingGetReferenceById() {
CustomAbstractPersistable entity = repository.saveAndFlush(new CustomAbstractPersistable());

View File

@@ -1002,7 +1002,7 @@ public class UserRepositoryTests {
assertThat(result).isEqualTo(firstUser);
}
@Test // gh-1697
@Test // GH-1697
void looksUpEntityReferenceUsingGetById() {
flushTestUsers();
@@ -1011,7 +1011,7 @@ public class UserRepositoryTests {
assertThat(result).isEqualTo(firstUser);
}
@Test // gh-1697
@Test // GH-2232
void looksUpEntityReferenceUsingGetReferenceById() {
flushTestUsers();