Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
OliviaYtterbrink committed Sep 4, 2017
1 parent b6807d9 commit 5d07abd
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,21 @@ public void listProcedures() throws Throwable
"db.index.manual.seek.relationships(indexName :: STRING?, key :: STRING?, value :: ANY?) :: " +
"(relationship :: RELATIONSHIP?)",
"Get relationship from manual index. Replaces `START r=relationship:relIndex(key = 'A')`"
} ),
equalTo( new Object[]{"db.index.manual.between",
"db.index.manual.between(indexName :: STRING?, in :: NODE?, out :: NODE?, query :: ANY?) :: " +
"(relationship :: RELATIONSHIP?, weight :: FLOAT?)",
"Search relationship from manual index, starting at the node 'in' and ending at 'out'."
} ),
equalTo( new Object[]{"db.index.manual.in",
"db.index.manual.in(indexName :: STRING?, in :: NODE?, query :: ANY?) :: " +
"(relationship :: RELATIONSHIP?, weight :: FLOAT?)",
"Search relationship from manual index, starting at the node 'in'."
} ),
equalTo( new Object[]{"db.index.manual.out",
"db.index.manual.out(indexName :: STRING?, out :: NODE?, query :: ANY?) :: " +
"(relationship :: RELATIONSHIP?, weight :: FLOAT?)",
"Search relationship from manual index, ending at the node 'out'."
} )
) );
commit();
Expand Down

0 comments on commit 5d07abd

Please sign in to comment.