Skip to content
This repository was archived by the owner on Jun 26, 2022. It is now read-only.

Commit e13abef

Browse files
committed
Fixed test cases in MavenApplicationTest
1 parent aa42d5f commit e13abef

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

test/deployment/src/test/java/MavenApplicationTest.java

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,16 @@ public void testRelationQuery() {
5959
@Test
6060
public void testPredicateQuery1() {
6161
final String query = "match\n" +
62-
"$x isa movie, has title $t;\n" +
63-
"{ $t 'Apocalypse Now'; } or { $t < 'Juno'; $t > 'Godfather'; } or { $t 'Spy'; };\n" +
62+
"$x isa movie,\n" +
63+
" has title $t;\n" +
64+
"{\n" +
65+
" $t 'Apocalypse Now';\n" +
66+
"} or {\n" +
67+
" $t < 'Juno';\n" +
68+
" $t > 'Godfather';\n" +
69+
"} or {\n" +
70+
" $t 'Spy';\n" +
71+
"};\n" +
6472
"$t != 'Apocalypse Now';";
6573
TypeQLMatch parsed = TypeQL.parseQuery(query).asMatch();
6674

0 commit comments

Comments
 (0)