See gh-22549
This commit is contained in:
izeye 2020-07-24 22:50:55 +09:00 committed by Stephane Nicoll
parent 42155321cb
commit 6eba7c5f10
3 changed files with 3 additions and 3 deletions

View File

@ -542,7 +542,7 @@ class ServerPropertiesTests {
} }
@Test @Test
void nettyMaxInitialLineLenghtMatchesHttpDecoderSpecDefault() { void nettyMaxInitialLineLengthMatchesHttpDecoderSpecDefault() {
assertThat(this.properties.getNetty().getMaxInitialLineLength().toBytes()) assertThat(this.properties.getNetty().getMaxInitialLineLength().toBytes())
.isEqualTo(HttpDecoderSpec.DEFAULT_MAX_INITIAL_LINE_LENGTH); .isEqualTo(HttpDecoderSpec.DEFAULT_MAX_INITIAL_LINE_LENGTH);
} }

View File

@ -8316,7 +8316,7 @@ If you need the `Mockk` equivalent of the Mockito specific <<boot-features-testi
[[boot-features-container-images]] [[boot-features-container-images]]
== Building Container Images == Building Container Images
Spring Boot applications can be containerized either by <<boot-features-container-images-docker,packaging them into Docker images>>, or by <<boot-features-container-images-buildpacks,using Buildpacks to create docker compatible container images that you can run anywhere>>. Spring Boot applications can be containerized either by <<boot-features-container-images-docker,packaging them into Docker images>>, or by <<boot-features-container-images-buildpacks,using Buildpacks to create Docker compatible container images that you can run anywhere>>.

View File

@ -48,7 +48,7 @@ class LiquibaseChangelogMissingFailureAnalyzerTests {
} }
@AfterAll @AfterAll
static void clearDerbyLogLocation(@TempDir File temp) { static void clearDerbyLogLocation() {
System.clearProperty("derby.stream.error.file"); System.clearProperty("derby.stream.error.file");
} }