Skip to content

Commit 81baf4a

Browse files
committed
update test
1 parent 1ec1500 commit 81baf4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/example/FindAnyOnePathTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ void findAnyOnePath() {
5959
// language=cypher
6060
var records = session.run("match (start:Source)" +
6161
"match (end: Sink) " +
62-
"call bytecodedl.findOnePath(start, end, 10, 'insn') yield path return path").list();
62+
"call bytecodedl.findOnePath(start, end, 10) yield path return path").list();
6363

6464
for(Record record : records){
6565
//System.out.println(record.get("path"));
@@ -80,7 +80,7 @@ void biFindOnePath() {
8080
// language=cypher
8181
var records = session.run("match (start:Source)" +
8282
"match (end: Sink1) " +
83-
"call bytecodedl.biFindOnePath(start, end, 10, 'insn') yield path return path").list();
83+
"call bytecodedl.biFindOnePath(start, end, 10) yield path return path").list();
8484

8585
for(Record record : records){
8686
//System.out.println(record.get("path"));

0 commit comments

Comments
 (0)