Formatting

This commit is contained in:
spencergibb
2021-03-29 17:08:39 -04:00
parent b884f2088c
commit 2ddc7cb73b
4 changed files with 10 additions and 21 deletions

View File

@@ -107,10 +107,8 @@ public class ApplicationBootstrapTests {
@Test
public void propertiesBeansRegisterByCompositeEnvBeanFactoryPostProcessor() {
String[] beanNames = server
.getBeanNamesForType(MultipleJGitEnvironmentProperties.class);
assertThat(beanNames).isNotNull()
.anyMatch(s -> s.matches("git-env-repo-properties\\d"));
String[] beanNames = server.getBeanNamesForType(MultipleJGitEnvironmentProperties.class);
assertThat(beanNames).isNotNull().anyMatch(s -> s.matches("git-env-repo-properties\\d"));
}
}