Fix rebase from master

This commit is contained in:
Stephane Nicoll 2019-09-16 09:50:58 +02:00
parent ece29bbdfc
commit 9065c4997d
2 changed files with 2 additions and 3 deletions

View File

@ -33,8 +33,7 @@ import org.springframework.core.type.classreading.MetadataReaderFactory;
class TestTypeExcludeFilter extends TypeExcludeFilter {
private static final String[] CLASS_ANNOTATIONS = { "org.junit.runner.RunWith",
"org.junit.jupiter.api.extension.ExtendWith", "org.junit.platform.commons.annotation.Testable",
"org.testng.annotations.Test", };
"org.junit.jupiter.api.extension.ExtendWith", "org.junit.platform.commons.annotation.Testable" };
private static final String[] METHOD_ANNOTATIONS = { "org.junit.Test",
"org.junit.platform.commons.annotation.Testable" };

View File

@ -23,7 +23,7 @@ import org.springframework.context.annotation.Configuration;
@Testable
public abstract class AbstractJupiterTestWithConfigAndTestable {
@Configuration(proxyBeanMethods = false)
@Configuration
static class Config {
}