Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
waderwu committed Dec 28, 2023
1 parent 1ec1500 commit 81baf4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/example/FindAnyOnePathTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ void findAnyOnePath() {
// language=cypher
var records = session.run("match (start:Source)" +
"match (end: Sink) " +
"call bytecodedl.findOnePath(start, end, 10, 'insn') yield path return path").list();
"call bytecodedl.findOnePath(start, end, 10) yield path return path").list();

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

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

0 comments on commit 81baf4a

Please sign in to comment.