Fix ImportAutoConfigurationImportSelectorTests.determineImportsWhenUsingNonMetaWithClassesShouldBeSame()
Closes gh-8204
This commit is contained in:
parent
e9057354c2
commit
09998d1155
|
|
@ -157,7 +157,7 @@ public class ImportAutoConfigurationImportSelectorTests {
|
||||||
Set<Object> set1 = this.importSelector.determineImports(
|
Set<Object> set1 = this.importSelector.determineImports(
|
||||||
getAnnotationMetadata(ImportAutoConfigurationWithItemsOne.class));
|
getAnnotationMetadata(ImportAutoConfigurationWithItemsOne.class));
|
||||||
Set<Object> set2 = this.importSelector.determineImports(
|
Set<Object> set2 = this.importSelector.determineImports(
|
||||||
getAnnotationMetadata(ImportAutoConfigurationWithItemsOne.class));
|
getAnnotationMetadata(ImportAutoConfigurationWithItemsTwo.class));
|
||||||
assertThat(set1).isEqualTo(set2);
|
assertThat(set1).isEqualTo(set2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -269,7 +269,7 @@ public class ImportAutoConfigurationImportSelectorTests {
|
||||||
}
|
}
|
||||||
|
|
||||||
@ImportAutoConfiguration(classes = ThymeleafAutoConfiguration.class)
|
@ImportAutoConfiguration(classes = ThymeleafAutoConfiguration.class)
|
||||||
@UnrelatedOne
|
@UnrelatedTwo
|
||||||
static class ImportAutoConfigurationWithItemsTwo {
|
static class ImportAutoConfigurationWithItemsTwo {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue