From 6eba7c5f107af29e268b04c48633714529f53bc6 Mon Sep 17 00:00:00 2001 From: izeye Date: Fri, 24 Jul 2020 22:50:55 +0900 Subject: [PATCH] Polish See gh-22549 --- .../boot/autoconfigure/web/ServerPropertiesTests.java | 2 +- .../src/docs/asciidoc/spring-boot-features.adoc | 2 +- .../LiquibaseChangelogMissingFailureAnalyzerTests.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/ServerPropertiesTests.java b/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/ServerPropertiesTests.java index cbc47a09e5..6d4414523a 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/ServerPropertiesTests.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/ServerPropertiesTests.java @@ -542,7 +542,7 @@ class ServerPropertiesTests { } @Test - void nettyMaxInitialLineLenghtMatchesHttpDecoderSpecDefault() { + void nettyMaxInitialLineLengthMatchesHttpDecoderSpecDefault() { assertThat(this.properties.getNetty().getMaxInitialLineLength().toBytes()) .isEqualTo(HttpDecoderSpec.DEFAULT_MAX_INITIAL_LINE_LENGTH); } diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc index be3c4ad1d0..195e59db30 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc @@ -8316,7 +8316,7 @@ If you need the `Mockk` equivalent of the Mockito specific <>, or by <>. +Spring Boot applications can be containerized either by <>, or by <>. diff --git a/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/liquibase/LiquibaseChangelogMissingFailureAnalyzerTests.java b/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/liquibase/LiquibaseChangelogMissingFailureAnalyzerTests.java index 39fd0ddd4a..416351f34f 100644 --- a/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/liquibase/LiquibaseChangelogMissingFailureAnalyzerTests.java +++ b/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/liquibase/LiquibaseChangelogMissingFailureAnalyzerTests.java @@ -48,7 +48,7 @@ class LiquibaseChangelogMissingFailureAnalyzerTests { } @AfterAll - static void clearDerbyLogLocation(@TempDir File temp) { + static void clearDerbyLogLocation() { System.clearProperty("derby.stream.error.file"); }