diff --git a/spring-boot-devtools/src/test/java/org/springframework/boot/devtools/autoconfigure/LocalDevToolsAutoConfigurationTests.java b/spring-boot-devtools/src/test/java/org/springframework/boot/devtools/autoconfigure/LocalDevToolsAutoConfigurationTests.java index 5a5df39eaa..82fbfdc599 100644 --- a/spring-boot-devtools/src/test/java/org/springframework/boot/devtools/autoconfigure/LocalDevToolsAutoConfigurationTests.java +++ b/spring-boot-devtools/src/test/java/org/springframework/boot/devtools/autoconfigure/LocalDevToolsAutoConfigurationTests.java @@ -134,7 +134,7 @@ public class LocalDevToolsAutoConfigurationTests { } @Test - public void restartTriggerdOnClassPathChangeWithRestart() throws Exception { + public void restartTriggeredOnClassPathChangeWithRestart() throws Exception { this.context = initializeAndRun(Config.class); ClassPathChangedEvent event = new ClassPathChangedEvent(this.context, Collections. emptySet(), true); @@ -143,7 +143,7 @@ public class LocalDevToolsAutoConfigurationTests { } @Test - public void restartNotTriggerdOnClassPathChangeWithRestart() throws Exception { + public void restartNotTriggeredOnClassPathChangeWithRestart() throws Exception { this.context = initializeAndRun(Config.class); ClassPathChangedEvent event = new ClassPathChangedEvent(this.context, Collections. emptySet(), false);