diff --git a/spring-cloud-config-server/src/test/java/org/springframework/cloud/config/server/environment/ConfigurableHttpConnectionFactoryIntegrationTests.java b/spring-cloud-config-server/src/test/java/org/springframework/cloud/config/server/environment/ConfigurableHttpConnectionFactoryIntegrationTests.java index 3127fdfe..a7ae985f 100644 --- a/spring-cloud-config-server/src/test/java/org/springframework/cloud/config/server/environment/ConfigurableHttpConnectionFactoryIntegrationTests.java +++ b/spring-cloud-config-server/src/test/java/org/springframework/cloud/config/server/environment/ConfigurableHttpConnectionFactoryIntegrationTests.java @@ -250,7 +250,8 @@ public class ConfigurableHttpConnectionFactoryIntegrationTests { private void makeRequest(HttpClient httpClient, String url) { try { httpClient.execute(new HttpGet(url)); - } catch (IOException e) { + } + catch (IOException e) { throw new RuntimeException(e); } }