GH-745 - Fix typo in ApplicationModuleDetectionSTrategy.explicitlyAnnotated().

This commit is contained in:
Igor Mukhin
2024-07-25 21:19:44 +02:00
committed by Oliver Drotbohm
parent dad454aea5
commit cc571baf86
4 changed files with 4 additions and 4 deletions

View File

@@ -34,7 +34,7 @@ class ApplicationModuleDetectionStrategyLookupTests {
System.setProperty("spring.config.additional-location", "classpath:detection/explicitly-annotated.properties");
assertThat(ApplicationModuleDetectionStrategyLookup.getStrategy())
.isEqualTo(ApplicationModuleDetectionStrategy.explictlyAnnotated());
.isEqualTo(ApplicationModuleDetectionStrategy.explicitlyAnnotated());
}
@Test // GH-652

View File

@@ -38,7 +38,7 @@ class ModuleDetectionStrategyUnitTest {
var javaPackage = JavaPackage.of(Classes.of(classes), "jmolecules");
assertThat(ApplicationModuleDetectionStrategy.explictlyAnnotated().getModuleBasePackages(javaPackage))
assertThat(ApplicationModuleDetectionStrategy.explicitlyAnnotated().getModuleBasePackages(javaPackage))
.containsExactly(javaPackage);
}
}