From 119a9ffc3e8308bd171fdc80bfa7a96a2c83c498 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Mon, 16 Oct 2023 16:18:34 +0200 Subject: [PATCH] Rename test class to NestedTests for AOT integration testing Prior to this commit, the NestedTestCase resulted in errors during our AOT end-to-end integration tests since it did not comply to our "*Tests" naming convention. See gh-29122 --- .../context/junit4/nested/NestedTestsWithSpringRulesTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-test/src/test/java/org/springframework/test/context/junit4/nested/NestedTestsWithSpringRulesTests.java b/spring-test/src/test/java/org/springframework/test/context/junit4/nested/NestedTestsWithSpringRulesTests.java index 654a0edca517..9ad8a979ce43 100644 --- a/spring-test/src/test/java/org/springframework/test/context/junit4/nested/NestedTestsWithSpringRulesTests.java +++ b/spring-test/src/test/java/org/springframework/test/context/junit4/nested/NestedTestsWithSpringRulesTests.java @@ -54,7 +54,7 @@ public void topLevelTest() { @ContextConfiguration(classes = NestedConfig.class) - public class NestedTestCase extends SpringRuleConfigurer { + public class NestedTests extends SpringRuleConfigurer { @Autowired String bar;