Skip to content

Commit 9065c49

Browse files
committed
Fix rebase from master
1 parent ece29bb commit 9065c49

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/context/filter/TestTypeExcludeFilter.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@
3333
class TestTypeExcludeFilter extends TypeExcludeFilter {
3434

3535
private static final String[] CLASS_ANNOTATIONS = { "org.junit.runner.RunWith",
36-
"org.junit.jupiter.api.extension.ExtendWith", "org.junit.platform.commons.annotation.Testable",
37-
"org.testng.annotations.Test", };
36+
"org.junit.jupiter.api.extension.ExtendWith", "org.junit.platform.commons.annotation.Testable" };
3837

3938
private static final String[] METHOD_ANNOTATIONS = { "org.junit.Test",
4039
"org.junit.platform.commons.annotation.Testable" };

spring-boot-project/spring-boot-test/src/test/java/org/springframework/boot/test/context/filter/AbstractJupiterTestWithConfigAndTestable.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
@Testable
2424
public abstract class AbstractJupiterTestWithConfigAndTestable {
2525

26-
@Configuration(proxyBeanMethods = false)
26+
@Configuration
2727
static class Config {
2828

2929
}

0 commit comments

Comments
 (0)