summaryrefslogtreecommitdiffstats
path: root/tests/lib/AppTest.php
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2016-07-26 16:43:46 +0200
committerMorris Jobke <hey@morrisjobke.de>2016-07-26 16:43:58 +0200
commit6482be040b4ce78179f639a6ad0aa8ce6c8ec406 (patch)
tree5398fb486a80fc1223e006310f6d09f72b623921 /tests/lib/AppTest.php
parent96d466475c67b310288daa43f2829dc5d72836a4 (diff)
downloadnextcloud-server-6482be040b4ce78179f639a6ad0aa8ce6c8ec406.tar.gz
nextcloud-server-6482be040b4ce78179f639a6ad0aa8ce6c8ec406.zip
fix unit tests
Diffstat (limited to 'tests/lib/AppTest.php')
-rw-r--r--tests/lib/AppTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/AppTest.php b/tests/lib/AppTest.php
index 2e5b6f74ab7..01ec1ade403 100644
--- a/tests/lib/AppTest.php
+++ b/tests/lib/AppTest.php
@@ -452,11 +452,11 @@ class AppTest extends \Test\TestCase {
);
$apps = \OC_App::getEnabledApps();
- $this->assertEquals(array('files', 'app3', 'dav', 'federatedfilesharing',), $apps);
+ $this->assertEquals(array('files', 'app3', 'dav', 'federatedfilesharing', 'workflowengine'), $apps);
// mock should not be called again here
$apps = \OC_App::getEnabledApps();
- $this->assertEquals(array('files', 'app3', 'dav', 'federatedfilesharing',), $apps);
+ $this->assertEquals(array('files', 'app3', 'dav', 'federatedfilesharing', 'workflowengine'), $apps);
$this->restoreAppConfig();
\OC_User::setUserId(null);