diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-07-26 16:43:46 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-07-26 16:43:58 +0200 |
commit | 6482be040b4ce78179f639a6ad0aa8ce6c8ec406 (patch) | |
tree | 5398fb486a80fc1223e006310f6d09f72b623921 /tests/lib/AppTest.php | |
parent | 96d466475c67b310288daa43f2829dc5d72836a4 (diff) | |
download | nextcloud-server-6482be040b4ce78179f639a6ad0aa8ce6c8ec406.tar.gz nextcloud-server-6482be040b4ce78179f639a6ad0aa8ce6c8ec406.zip |
fix unit tests
Diffstat (limited to 'tests/lib/AppTest.php')
-rw-r--r-- | tests/lib/AppTest.php | 4 |
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); |