Merge pull request #22549 from izeye

* pr/22549:
  Polish

Closes gh-22549
This commit is contained in:
Stephane Nicoll
2020-07-25 07:26:58 +02:00
3 changed files with 3 additions and 3 deletions

View File

@@ -542,7 +542,7 @@ class ServerPropertiesTests {
}
@Test
void nettyMaxInitialLineLenghtMatchesHttpDecoderSpecDefault() {
void nettyMaxInitialLineLengthMatchesHttpDecoderSpecDefault() {
assertThat(this.properties.getNetty().getMaxInitialLineLength().toBytes())
.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]]
== 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
static void clearDerbyLogLocation(@TempDir File temp) {
static void clearDerbyLogLocation() {
System.clearProperty("derby.stream.error.file");
}