From 307e17f6bd305a761c4722cdcd8526206a5d638b Mon Sep 17 00:00:00 2001 From: Craig Taverner Date: Tue, 27 Oct 2015 11:34:37 +0100 Subject: [PATCH] Updated to Neo4j 3.0.0-SNAPSHOT --- pom.xml | 4 ++-- src/test/java/org/neo4j/gis/spatial/IndexProviderTest.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index 42b9475a0..64961a80f 100644 --- a/pom.xml +++ b/pom.xml @@ -1,7 +1,7 @@ - 2.3.0 + 3.0.0-SNAPSHOT 1.7 3.1 1.4 @@ -20,7 +20,7 @@ 4.0.0 neo4j-spatial org.neo4j - 0.15-neo4j-2.3.0 + 0.15-neo4j-3.0.0 Neo4j - Spatial Components Spatial utilities and components for Neo4j http://components.neo4j.org/${project.artifactId}/${project.version} diff --git a/src/test/java/org/neo4j/gis/spatial/IndexProviderTest.java b/src/test/java/org/neo4j/gis/spatial/IndexProviderTest.java index 5b2ee146c..b18af526a 100644 --- a/src/test/java/org/neo4j/gis/spatial/IndexProviderTest.java +++ b/src/test/java/org/neo4j/gis/spatial/IndexProviderTest.java @@ -217,9 +217,9 @@ public void testNodeIndex() throws Exception { params); assertTrue(hits.hasNext()); - ExecutionResult result = engine.execute("start malmo=node:layer1('bbox:[15.0, 16.0, 56.0, 57.0]') match p=malmo--other return malmo, other"); + ExecutionResult result = engine.execute("start malmo=node:layer1('bbox:[15.0, 16.0, 56.0, 57.0]') match p=(malmo)--(other) return malmo, other"); assertTrue(result.iterator().hasNext()); - result = engine.execute("start malmo=node:layer1('withinDistance:[56.0, 15.0,1000.0]') match p=malmo--other return malmo, other"); + result = engine.execute("start malmo=node:layer1('withinDistance:[56.0, 15.0,1000.0]') match p=(malmo)--(other) return malmo, other"); assertTrue(result.iterator().hasNext()); System.out.println(result.dumpToString()); }