From fff94733ef43e160df3458ef83002a18174b73be Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 15 Oct 2014 15:56:14 +0100 Subject: [PATCH] Rename class so Maven runs its tests Maven is configured to run tests found in classes ending in Tests. This meant that the tests in BasicErrorControllerIntegrationTest (note the missing s) were not being run. This commit renames the test class so that it's picked up by Maven. --- ...grationTest.java => BasicErrorControllerIntegrationTests.java} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/{BasicErrorControllerIntegrationTest.java => BasicErrorControllerIntegrationTests.java} (100%) diff --git a/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/BasicErrorControllerIntegrationTest.java b/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/BasicErrorControllerIntegrationTests.java similarity index 100% rename from spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/BasicErrorControllerIntegrationTest.java rename to spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/BasicErrorControllerIntegrationTests.java