Merge pull request #22535 from dreis2211

* pr/22535:
  Polish

Closes gh-22535
This commit is contained in:
Stephane Nicoll
2020-07-24 12:58:27 +02:00

View File

@@ -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();
}