From 73477d2365114aa1ade199798aa7c8c8c72aed2e Mon Sep 17 00:00:00 2001 From: buildmaster Date: Wed, 9 Sep 2020 09:57:43 +0000 Subject: [PATCH] Bumping versions --- .../client/ConfigServicePropertySourceLocatorTests.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/spring-cloud-config-client/src/test/java/org/springframework/cloud/config/client/ConfigServicePropertySourceLocatorTests.java b/spring-cloud-config-client/src/test/java/org/springframework/cloud/config/client/ConfigServicePropertySourceLocatorTests.java index f8eb5884..bb2a5cad 100644 --- a/spring-cloud-config-client/src/test/java/org/springframework/cloud/config/client/ConfigServicePropertySourceLocatorTests.java +++ b/spring-cloud-config-client/src/test/java/org/springframework/cloud/config/client/ConfigServicePropertySourceLocatorTests.java @@ -345,10 +345,11 @@ public class ConfigServicePropertySourceLocatorTests { mockRequestResponseWithoutLabel(new ResponseEntity<>(body, HttpStatus.OK)); this.locator.setRestTemplate(this.restTemplate); - List> propertySources = new ArrayList<>(this.locator - .locateCollection(this.environment)); + List> propertySources = new ArrayList<>( + this.locator.locateCollection(this.environment)); assertThat(propertySources).hasSize(2); - org.springframework.core.env.PropertySource propertySource = propertySources.get(1); + org.springframework.core.env.PropertySource propertySource = propertySources + .get(1); Map source = (Map) propertySource.getSource(); Iterator iterator = source.keySet().iterator(); assertThat(iterator.next()).isEqualTo("zuul.routes.specificproduct.path");