summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2016-02-03 12:57:22 +0100
committerJoas Schilling <nickvergessen@owncloud.com>2016-02-03 12:57:22 +0100
commit599eb141b482f4fd4b0506116cdbd431a29d1a23 (patch)
treeb2e8f9c6502094d80f1af580785df6f2a3286af5 /tests
parent78d5c89e860346e559b8b50bab07597b0c58ae5c (diff)
downloadnextcloud-server-599eb141b482f4fd4b0506116cdbd431a29d1a23.tar.gz
nextcloud-server-599eb141b482f4fd4b0506116cdbd431a29d1a23.zip
Make sure tests don't leave a stray directory behind
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>' .