From 6c59e75874fe0031fb749f4f2be6219d4d14cddb Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Mon, 21 Sep 2015 16:55:20 +0100 Subject: [PATCH] Update tests to align with changes made in 8094076 See gh-3900 --- .../boot/devtools/autoconfigure/DevToolsPropertiesTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-devtools/src/test/java/org/springframework/boot/devtools/autoconfigure/DevToolsPropertiesTests.java b/spring-boot-devtools/src/test/java/org/springframework/boot/devtools/autoconfigure/DevToolsPropertiesTests.java index de2e65d875..72d68e0bf5 100644 --- a/spring-boot-devtools/src/test/java/org/springframework/boot/devtools/autoconfigure/DevToolsPropertiesTests.java +++ b/spring-boot-devtools/src/test/java/org/springframework/boot/devtools/autoconfigure/DevToolsPropertiesTests.java @@ -38,7 +38,7 @@ public class DevToolsPropertiesTests { restart.getAllExclude(), arrayContaining("META-INF/maven/**", "META-INF/resources/**", "resources/**", "static/**", "public/**", "templates/**", - "foo/**", "bar/**")); + "**/*Test.class", "**/*Tests.class", "foo/**", "bar/**")); } @Test