From 24593f39f8a1271f40281ee63016ba9fe43b05c0 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Thu, 28 Mar 2019 13:55:55 +0000 Subject: [PATCH] Polish "Use HTTPS for external links wherever possible" See gh-16276 --- .../boot/autoconfigure/data/neo4j/Neo4jPropertiesTests.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/neo4j/Neo4jPropertiesTests.java b/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/neo4j/Neo4jPropertiesTests.java index 4bafc9fe7c..1d070a1312 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/neo4j/Neo4jPropertiesTests.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/neo4j/Neo4jPropertiesTests.java @@ -112,7 +112,8 @@ public class Neo4jPropertiesTests { Neo4jProperties properties = load(true, "spring.data.neo4j.uri=https://user:secret@my-server:7474"); Configuration configuration = properties.createConfiguration(); - assertDriver(configuration, Neo4jProperties.HTTP_DRIVER, "https://my-server:7474"); + assertDriver(configuration, Neo4jProperties.HTTP_DRIVER, + "https://my-server:7474"); assertCredentials(configuration, "user", "secret"); }