You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by ok...@apache.org on 2015/06/24 00:57:05 UTC

incubator-tinkerpop git commit: had a cypher() bug.

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/master dba50ee48 -> 73223bfc6


had a cypher() bug.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/commit/73223bfc
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/tree/73223bfc
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/diff/73223bfc

Branch: refs/heads/master
Commit: 73223bfc64625bb7aaf2c3ceb993c1479e940ec5
Parents: dba50ee
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Tue Jun 23 16:56:57 2015 -0600
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Tue Jun 23 16:56:57 2015 -0600

----------------------------------------------------------------------
 .../tinkerpop/gremlin/neo4j/process/NativeNeo4jCypherTest.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/73223bfc/neo4j-gremlin/src/test/java/org/apache/tinkerpop/gremlin/neo4j/process/NativeNeo4jCypherTest.java
----------------------------------------------------------------------
diff --git a/neo4j-gremlin/src/test/java/org/apache/tinkerpop/gremlin/neo4j/process/NativeNeo4jCypherTest.java b/neo4j-gremlin/src/test/java/org/apache/tinkerpop/gremlin/neo4j/process/NativeNeo4jCypherTest.java
index 48aa308..67af0b5 100644
--- a/neo4j-gremlin/src/test/java/org/apache/tinkerpop/gremlin/neo4j/process/NativeNeo4jCypherTest.java
+++ b/neo4j-gremlin/src/test/java/org/apache/tinkerpop/gremlin/neo4j/process/NativeNeo4jCypherTest.java
@@ -179,7 +179,7 @@ public class NativeNeo4jCypherTest extends AbstractNeo4jGremlinTest {
                         as("b").out("followedBy").as("c"),
                         as("c").out("sungBy").as("a"),
                         as("c").out("writtenBy").as("a")).select().by("name"),
-                () -> n.cypher("MATCH (a)<-[:sungBy]-(b), (a)<-[:writtenBy]->(b), (b)-[:followedBy]->(c), (c)-[:sungBy]->(a), (c)-[:writtenBy]->(a) RETURN a.name, b.name, c.name"),
+                () -> n.cypher("MATCH (a)<-[:sungBy]-(b), (a)<-[:writtenBy]-(b), (b)-[:followedBy]->(c), (c)-[:sungBy]->(a), (c)-[:writtenBy]->(a) RETURN a.name, b.name, c.name"),
                 ///
                 () -> g.V().match("a",
                         as("a").has("name", "Garcia").has(T.label, "artist"),