diff --git a/spring-test/src/test/java/org/springframework/test/context/web/MetaAnnotationConfigWacTests.java b/spring-test/src/test/java/org/springframework/test/context/web/MetaAnnotationConfigWacTests.java index 7bd62b0b76..53252245dd 100644 --- a/spring-test/src/test/java/org/springframework/test/context/web/MetaAnnotationConfigWacTests.java +++ b/spring-test/src/test/java/org/springframework/test/context/web/MetaAnnotationConfigWacTests.java @@ -33,10 +33,10 @@ import static org.junit.Assert.*; * * @author Sam Brannen * @since 4.0 - * @see WebTests + * @see WebTest */ @RunWith(SpringJUnit4ClassRunner.class) -@WebTests +@WebTest public class MetaAnnotationConfigWacTests { @Autowired diff --git a/spring-test/src/test/java/org/springframework/test/context/web/WebTests.java b/spring-test/src/test/java/org/springframework/test/context/web/WebTest.java similarity index 97% rename from spring-test/src/test/java/org/springframework/test/context/web/WebTests.java rename to spring-test/src/test/java/org/springframework/test/context/web/WebTest.java index 604dca2e4b..2d9acc94e2 100644 --- a/spring-test/src/test/java/org/springframework/test/context/web/WebTests.java +++ b/spring-test/src/test/java/org/springframework/test/context/web/WebTest.java @@ -33,7 +33,7 @@ import org.springframework.test.context.ContextConfiguration; @WebAppConfiguration @ContextConfiguration @Retention(RetentionPolicy.RUNTIME) -public @interface WebTests { +public @interface WebTest { @Configuration static class Config {