Bumping versions

This commit is contained in:
buildmaster
2019-12-15 12:34:19 +00:00
parent c7b52402de
commit e888d8f01f

View File

@@ -112,9 +112,10 @@ public class ConsulPropertySourceLocatorFilesTests {
assertFilePropertySourceExists(propertySources, APPLICATION_YML);
}
private void assertFilePropertySourceExists(MutablePropertySources propertySources, String name) {
private void assertFilePropertySourceExists(MutablePropertySources propertySources,
String name) {
boolean found = propertySources.stream()
.anyMatch(propertySource -> propertySource.getName().endsWith(name));
.anyMatch(propertySource -> propertySource.getName().endsWith(name));
assertThat(found).as("missing consul filesource: " + name).isTrue();
}