Skip to content

Commit b859120

Browse files
committed
Polish
1 parent 062dc3c commit b859120

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/neo4j/Neo4jPropertiesTests.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,7 @@ public void credentialsAreSetFromUri() {
103103
Neo4jProperties properties = load(true,
104104
"spring.data.neo4j.uri=http://user:secret@my-server:7474");
105105
Configuration configuration = properties.createConfiguration();
106-
assertDriver(configuration, Neo4jProperties.HTTP_DRIVER,
107-
"http://my-server:7474");
108-
assertCredentials(configuration, "user", "secret");
106+
assertDriver(configuration, Neo4jProperties.HTTP_DRIVER, "http://my-server:7474");
109107
assertCredentials(configuration, "user", "secret");
110108
}
111109

0 commit comments

Comments
 (0)