From 3435e973ec2f16b180a7dc22a54a822eeafffb1a Mon Sep 17 00:00:00 2001 From: Max Neunhoeffer Date: Thu, 15 Sep 2016 10:25:57 +0200 Subject: [PATCH] Correct path to enterprise js code in testing.js. --- js/client/modules/@arangodb/testing.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/client/modules/@arangodb/testing.js b/js/client/modules/@arangodb/testing.js index 8826291c09..8171bfd250 100644 --- a/js/client/modules/@arangodb/testing.js +++ b/js/client/modules/@arangodb/testing.js @@ -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; }