Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Updated to Neo4j 3.0.0-SNAPSHOT
  • Loading branch information
craigtaverner committed Oct 27, 2015
1 parent 32383d4 commit 307e17f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pom.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<properties>
<neo4j.version>2.3.0</neo4j.version>
<neo4j.version>3.0.0-SNAPSHOT</neo4j.version>
<neo4j.java.version>1.7</neo4j.java.version>
<maven-compiler-plugin.version>3.1</maven-compiler-plugin.version>
<maven-gpg-plugin.version>1.4</maven-gpg-plugin.version>
Expand All @@ -20,7 +20,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>neo4j-spatial</artifactId>
<groupId>org.neo4j</groupId>
<version>0.15-neo4j-2.3.0</version>
<version>0.15-neo4j-3.0.0</version>
<name>Neo4j - Spatial Components</name>
<description>Spatial utilities and components for Neo4j</description>
<url>http://components.neo4j.org/${project.artifactId}/${project.version}</url>
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/org/neo4j/gis/spatial/IndexProviderTest.java
Expand Up @@ -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());
}
Expand Down

0 comments on commit 307e17f

Please sign in to comment.