Skip to content

Commit 330f5b7

Browse files
michael-simonswilkinsona
authored andcommitted
Upgrade to Neo4j-OGM 3.2.0-alpha04
Closes gh-15937
1 parent 7a8104a commit 330f5b7

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/neo4j/Neo4jHealthIndicatorTests.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2018 the original author or authors.
2+
* Copyright 2012-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -42,6 +42,7 @@
4242
*
4343
* @author Eric Spiegelberg
4444
* @author Stephane Nicoll
45+
* @author Michael Simons
4546
*/
4647
public class Neo4jHealthIndicatorTests {
4748

@@ -77,9 +78,8 @@ public void neo4jUp() {
7778

7879
@Test
7980
public void neo4jDown() {
80-
CypherException cypherException = new CypherException("Error executing Cypher",
81-
"Neo.ClientError.Statement.SyntaxError",
82-
"Unable to execute invalid Cypher");
81+
CypherException cypherException = new CypherException(
82+
"Neo.ClientError.Statement.SyntaxError", "Error executing Cypher");
8383
given(this.session.query(Neo4jHealthIndicator.CYPHER, Collections.emptyMap()))
8484
.willThrow(cypherException);
8585
Health health = this.neo4jHealthIndicator.health();

spring-boot-project/spring-boot-dependencies/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@
138138
<mssql-jdbc.version>6.4.0.jre8</mssql-jdbc.version>
139139
<mysql.version>8.0.15</mysql.version>
140140
<nekohtml.version>1.9.22</nekohtml.version>
141-
<neo4j-ogm.version>3.1.7</neo4j-ogm.version>
141+
<neo4j-ogm.version>3.2.0-alpha04</neo4j-ogm.version>
142142
<netty.version>4.1.33.Final</netty.version>
143143
<netty-tcnative.version>2.0.20.Final</netty-tcnative.version>
144144
<nio-multipart-parser.version>1.1.0</nio-multipart-parser.version>

0 commit comments

Comments
 (0)