Fix matchesNestedConfigurationClassWithoutTestMethodsIfItHasTestable()

See gh-18559
This commit is contained in:
Johnny Lim
2019-10-11 09:43:48 +09:00
committed by Stephane Nicoll
parent 9a89039172
commit 887c3b71f3

View File

@@ -81,7 +81,7 @@ class TestTypeExcludeFilterTests {
@Test
void matchesNestedConfigurationClassWithoutTestMethodsIfItHasTestable() throws Exception {
assertThat(this.filter.match(getMetadataReader(AbstractJupiterTestWithConfigAndExtendWith.Config.class),
assertThat(this.filter.match(getMetadataReader(AbstractJupiterTestWithConfigAndTestable.Config.class),
this.metadataReaderFactory)).isTrue();
}