1
0
Fork 0

test was not deterministic

This commit is contained in:
Jan Steemann 2012-05-16 14:39:35 +02:00
parent 197517e408
commit bccb3e48b6
1 changed files with 1 additions and 1 deletions

View File

@ -351,7 +351,7 @@ function ahuacatlBindTestSuite () {
testBindCollection : function () {
var expected = [ 5, 63 ];
var actual = getQueryResults("FOR u IN @@collection FILTER u.value IN [ @value1, @value2 ] RETURN u.value", { "@collection" : numbers.name(), "value1" : 5, "value2" : 63 }, true);
var actual = getQueryResults("FOR u IN @@collection FILTER u.value IN [ @value1, @value2 ] SORT u.value RETURN u.value", { "@collection" : numbers.name(), "value1" : 5, "value2" : 63 }, true);
assertEqual(expected, actual);
},