1
0
Fork 0

attempt to make test more deterministic

This commit is contained in:
jsteemann 2019-11-12 17:10:55 +01:00
parent d400830814
commit 03d02bab49
1 changed files with 1 additions and 1 deletions

View File

@ -898,7 +898,7 @@ function multiCollectionGraphSuite() {
/* this test is intended to trigger the clone functionality. */
var query = 'FOR t IN ' + vn +
' FOR s IN ' + vn2 +
' FOR x, e, p IN OUTBOUND t ' + en + ' SORT x._key RETURN {vertex: x, path: p}';
' FOR x, e, p IN OUTBOUND t ' + en + ' SORT x._key, e._key RETURN {vertex: x, path: p}';
var result = db._query(query).toArray();
var plans = AQL_EXPLAIN(query, {}, opts).plans;
plans.forEach(function (plan) {