Skip to content

Commit

Permalink
fix cis
Browse files Browse the repository at this point in the history
  • Loading branch information
BingqingLyu committed Dec 12, 2024
1 parent 3128925 commit 98a37fd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -225,9 +225,9 @@ public static QueryContext get_simple_match_query_18_test() {
"MATCH (country:PLACE {name:"
+ " \"India\"})<-[:ISPARTOF]-(:PLACE)<-[:ISLOCATEDIN]-(zombie:PERSON)\n"
+ "OPTIONAL MATCH (zombie)<-[:HASCREATOR]-(message)\n"
+ "WHERE message.creationDate < 20100630000000000\n"
+ "WHERE message.length < 100\n"
+ " Return count(country);";
List<String> expected = Arrays.asList("Record<{$f0: 25}>");
List<String> expected = Arrays.asList("Record<{$f0: 4211}>");
return new QueryContext(query, expected);
}
}

0 comments on commit 98a37fd

Please sign in to comment.