Merge branch '2.3.x'

Closes gh-24401
This commit is contained in:
Stephane Nicoll
2020-12-08 15:42:52 +01:00
7 changed files with 12 additions and 12 deletions

View File

@@ -109,9 +109,9 @@ class DataJpaTestIntegrationTests {
}
@Test
void bootstrapModeIsLazyByDefault() {
void bootstrapModeIsDefaultByDefault() {
assertThat(this.applicationContext.getEnvironment().getProperty("spring.data.jpa.repositories.bootstrap-mode"))
.isEqualTo(BootstrapMode.LAZY.name());
.isEqualTo(BootstrapMode.DEFAULT.name());
}
}