1
0
Fork 0

Fixed typo in tests

This commit is contained in:
Michael Hackstein 2016-01-18 17:38:51 +01:00
parent e291775ff3
commit cfdbc50e72
2 changed files with 4 additions and 4 deletions

View File

@ -511,12 +511,12 @@ function ahuacatlQueryEdgesTestSuite () {
assertEqual([
"Fred->Jacob",
"John->Fred",
"Multi2->Mulit3"
"Multi2->Multi3"
], AQL_EXECUTE(query, bindParams).json);
query = "FOR x IN @list FOR i IN " + relations.name() + " FILTER i._to == x SORT i.what RETURN i.what";
assertEqual([
"John->Fred",
"Multi->Mulit2"
"Multi->Multi2"
], AQL_EXECUTE(query, bindParams).json);
}

View File

@ -511,12 +511,12 @@ function ahuacatlQueryEdgesTestSuite () {
assertEqual([
"Fred->Jacob",
"John->Fred",
"Multi2->Mulit3"
"Multi2->Multi3"
], AQL_EXECUTE(query, bindParams).json);
query = "FOR x IN @list FOR i IN " + relations.name() + " FILTER i._to == x SORT i.what RETURN i.what";
assertEqual([
"John->Fred",
"Multi->Mulit2"
"Multi->Multi2"
], AQL_EXECUTE(query, bindParams).json);
}