From 98ce54c4c32ba0a5f849f2dbd955e369f97a0875 Mon Sep 17 00:00:00 2001 From: izeye Date: Thu, 25 Jun 2015 08:17:26 +0900 Subject: [PATCH] Fix typo in test methods' names --- .../autoconfigure/LocalDevToolsAutoConfigurationTests.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 5a5df39eaa9..82fbfdc5992 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);