summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-02-03 14:17:10 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2016-02-03 14:17:10 +0100
commit74abbbc0d62152a4482fde90ecc09a0a38e7b961 (patch)
tree58fc3d92bd28d6ae909786298c0261a5550053ab /tests
parentf2ada30888e8569ad1875609476627afd316e75f (diff)
parent599eb141b482f4fd4b0506116cdbd431a29d1a23 (diff)
downloadnextcloud-server-74abbbc0d62152a4482fde90ecc09a0a38e7b961.tar.gz
nextcloud-server-74abbbc0d62152a4482fde90ecc09a0a38e7b961.zip
Merge pull request #22098 from owncloud/cleanup-core-apps
Cleanup core apps
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/appframework/AppTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lib/appframework/AppTest.php b/tests/lib/appframework/AppTest.php
index 7cba0e6db6b..3d41d6590aa 100644
--- a/tests/lib/appframework/AppTest.php
+++ b/tests/lib/appframework/AppTest.php
@@ -79,9 +79,9 @@ class AppTest extends \Test\TestCase {
$this->container['OCP\\AppFramework\\Http\\IOutput'] = $this->io;
$this->container['urlParams'] = array();
- $this->appPath = __DIR__ . '/../../../apps/namespacetestapp/appinfo';
- $infoXmlPath = $this->appPath . '/info.xml';
- mkdir($this->appPath, 0777, true);
+ $this->appPath = __DIR__ . '/../../../apps/namespacetestapp';
+ $infoXmlPath = $this->appPath . '/appinfo/info.xml';
+ mkdir($this->appPath . '/appinfo', 0777, true);
$xml = '<?xml version="1.0" encoding="UTF-8"?>' .
'<info>' .