Skip to content

Commit d7e470d

Browse files
committed
Polishing
1 parent 2862c87 commit d7e470d

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

spring-test/src/test/java/org/springframework/test/context/aot/AotIntegrationTests.java

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2024 the original author or authors.
2+
* Copyright 2002-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -147,8 +147,6 @@ void endToEndTestsForEntireSpringTestModule() {
147147
.filter(clazz -> clazz.getSimpleName().endsWith("Tests"))
148148
// TestNG EJB tests use @PersistenceContext which is not yet supported in tests in AOT mode.
149149
.filter(clazz -> !clazz.getPackageName().contains("testng.transaction.ejb"))
150-
// Uncomment the following to disable Bean Override tests since they are not yet supported in AOT mode.
151-
// .filter(clazz -> !clazz.getPackageName().contains("test.context.bean.override"))
152150
.toList();
153151

154152
// Optionally set failOnError flag to true to halt processing at the first failure.
@@ -169,7 +167,6 @@ void endToEndTestsForBeanOverrides() {
169167
void endToEndTestsForSelectedTestClasses() {
170168
List<Class<?>> testClasses = List.of(
171169
org.springframework.test.context.bean.override.easymock.EasyMockBeanIntegrationTests.class,
172-
org.springframework.test.context.bean.override.mockito.MockitoBeanForByNameLookupIntegrationTests.class,
173170
org.springframework.test.context.junit4.SpringJUnit4ClassRunnerAppCtxTests.class,
174171
org.springframework.test.context.junit4.ParameterizedDependencyInjectionTests.class
175172
);

0 commit comments

Comments
 (0)