1
0
Fork 0

Correct path to enterprise js code in testing.js.

This commit is contained in:
Max Neunhoeffer 2016-09-15 10:25:57 +02:00
parent 135edf1239
commit 3435e973ec
1 changed files with 1 additions and 1 deletions

View File

@ -1753,7 +1753,7 @@ function findTests () {
function doOnePath(path) {
var community = doOnePathInner(path);
if (global.ARANGODB_CLIENT_VERSION(true)['enterprise-version']) {
return community.concat(doOnePathInner('enterprise/Enterprise/' + path));
return community.concat(doOnePathInner('enterprise/' + path));
} else {
return community;
}