diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-02-23 16:03:32 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-02-23 16:03:32 +0100 |
commit | 4290e1990ec7d04a06298df9aad4c4fd8519f9aa (patch) | |
tree | dbb8c02e3f7a3d008b554931d8888f81dcb79b5c /apps/files_sharing/tests | |
parent | 81760321765272f638bf50487518860374ffb7f0 (diff) | |
parent | 5542fafd3696033ea8bfdcc441c05522cf6a5736 (diff) | |
download | nextcloud-server-4290e1990ec7d04a06298df9aad4c4fd8519f9aa.tar.gz nextcloud-server-4290e1990ec7d04a06298df9aad4c4fd8519f9aa.zip |
Merge pull request #13829 from owncloud/appmanager-list
Better caching for enabled apps
Diffstat (limited to 'apps/files_sharing/tests')
-rw-r--r-- | apps/files_sharing/tests/testcase.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_sharing/tests/testcase.php b/apps/files_sharing/tests/testcase.php index 39e34f3ba2a..cbf324df55d 100644 --- a/apps/files_sharing/tests/testcase.php +++ b/apps/files_sharing/tests/testcase.php @@ -94,13 +94,13 @@ abstract class TestCase extends \Test\TestCase { protected function setUp() { parent::setUp(); - $this->assertFalse(\OC_App::isEnabled('files_encryption')); - //login as user1 self::loginHelper(self::TEST_FILES_SHARING_API_USER1); $this->data = 'foobar'; $this->view = new \OC\Files\View('/' . self::TEST_FILES_SHARING_API_USER1 . '/files'); + + $this->assertFalse(\OC_App::isEnabled('files_encryption')); } protected function tearDown() { |