Skip to content

Commit 5eeb429

Browse files
izeyemhalbritter
authored andcommitted
Polish
See gh-33966
1 parent b81d590 commit 5eeb429

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

buildSrc/src/test/java/org/springframework/boot/build/bom/bomr/version/DependencyVersionTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ void parseWhenMavenLikeVersionWithNumericQualifierShouldReturnNumericQualifierDe
4444
}
4545

4646
@Test
47-
void parseWhe5ComponentsShouldReturnNumericQualifierDependencyVersion() {
47+
void parseWhen5ComponentsShouldReturnNumericQualifierDependencyVersion() {
4848
assertThat(DependencyVersion.parse("1.2.3.4.5")).isInstanceOf(MultipleComponentsDependencyVersion.class);
4949
}
5050

spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/health/AbstractReactiveHealthIndicatorTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ protected Mono<Health> doHealthCheck(Builder builder) {
4949
}
5050

5151
@Test
52-
void healthCheckWhenDownWithExceptionThrownDoesNotLogHealthCheckFailedMessage(CapturedOutput output) {
52+
void healthCheckWhenDownWithExceptionThrownLogsHealthCheckFailedMessage(CapturedOutput output) {
5353
Health health = new AbstractReactiveHealthIndicator("Test message") {
5454
@Override
5555
protected Mono<Health> doHealthCheck(Builder builder) {
@@ -62,7 +62,7 @@ protected Mono<Health> doHealthCheck(Builder builder) {
6262
}
6363

6464
@Test
65-
void healthCheckWhenDownWithExceptionConfiguredDoesNotLogHealthCheckFailedMessage(CapturedOutput output) {
65+
void healthCheckWhenDownWithExceptionConfiguredLogsHealthCheckFailedMessage(CapturedOutput output) {
6666
Health health = new AbstractReactiveHealthIndicator("Test message") {
6767
@Override
6868
protected Mono<Health> doHealthCheck(Builder builder) {

spring-boot-project/spring-boot-docs/src/main/java/org/springframework/boot/docs/howto/webserver/discoverport/MyWebIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import org.springframework.boot.test.web.server.LocalServerPort;
2222

2323
@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
24-
public class MyWebIntegrationTests {
24+
class MyWebIntegrationTests {
2525

2626
@LocalServerPort
2727
int port;

spring-boot-project/spring-boot-test/src/test/java/org/springframework/boot/test/context/runner/ApplicationContextRunnerTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* @author Stephane Nicoll
2626
* @author Phillip Webb
2727
*/
28-
public class ApplicationContextRunnerTests extends
28+
class ApplicationContextRunnerTests extends
2929
AbstractApplicationContextRunnerTests<ApplicationContextRunner, ConfigurableApplicationContext, AssertableApplicationContext> {
3030

3131
@Override

spring-boot-project/spring-boot-test/src/test/java/org/springframework/boot/test/context/runner/ReactiveWebApplicationContextRunnerTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* @author Stephane Nicoll
2626
* @author Phillip Webb
2727
*/
28-
public class ReactiveWebApplicationContextRunnerTests extends
28+
class ReactiveWebApplicationContextRunnerTests extends
2929
AbstractApplicationContextRunnerTests<ReactiveWebApplicationContextRunner, ConfigurableReactiveWebApplicationContext, AssertableReactiveWebApplicationContext> {
3030

3131
@Override

0 commit comments

Comments
 (0)