Skip to content

Commit

Permalink
fixing CI
Browse files Browse the repository at this point in the history
  • Loading branch information
zhanglei1949 committed Apr 23, 2024
1 parent 0c978e5 commit df45610
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,8 @@ public static QueryContext get_simple_match_query_15_test() {
}

public static QueryContext get_simple_match_query_16_test() {
String query = "Match (a)-[c*0..2]->(b) RETURN COUNT (DISTINCT c);";
List<String> expected = Arrays.asList("Record<{$f0: 1552803}>");
String query = "Match (a:TAG)<-[c*1..2]-(b) RETURN COUNT(c);";
List<String> expected = Arrays.asList("Record<{$f0: 325593}>");
return new QueryContext(query, expected);
}
}

0 comments on commit df45610

Please sign in to comment.