From 923474fa48f33559fae6d92fc6a9028e36323a7d Mon Sep 17 00:00:00 2001 From: dreis2211 Date: Thu, 23 Jul 2020 21:07:19 +0200 Subject: [PATCH] Polish See gh-22535 --- .../EnvironmentPostProcessorApplicationListenerTests.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/env/EnvironmentPostProcessorApplicationListenerTests.java b/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/env/EnvironmentPostProcessorApplicationListenerTests.java index f1db7e4d82..332fdb7074 100644 --- a/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/env/EnvironmentPostProcessorApplicationListenerTests.java +++ b/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/env/EnvironmentPostProcessorApplicationListenerTests.java @@ -64,22 +64,22 @@ class EnvironmentPostProcessorApplicationListenerTests { } @Test - void supporteEventTypeWhenApplicationEnvironmentPreparedEventReturnsTrue() { + void supportsEventTypeWhenApplicationEnvironmentPreparedEventReturnsTrue() { assertThat(this.listener.supportsEventType(ApplicationEnvironmentPreparedEvent.class)).isTrue(); } @Test - void supporteEventTypeWhenApplicationPreparedEventReturnsTrue() { + void supportsEventTypeWhenApplicationPreparedEventReturnsTrue() { assertThat(this.listener.supportsEventType(ApplicationPreparedEvent.class)).isTrue(); } @Test - void supporteEventTypeWhenApplicationFailedEventReturnsTrue() { + void supportsEventTypeWhenApplicationFailedEventReturnsTrue() { assertThat(this.listener.supportsEventType(ApplicationFailedEvent.class)).isTrue(); } @Test - void supporteEventTypeWhenOtherEventReturnsFalse() { + void supportsEventTypeWhenOtherEventReturnsFalse() { assertThat(this.listener.supportsEventType(ApplicationStartingEvent.class)).isFalse(); }