aboutsummaryrefslogtreecommitdiffstats
path: root/tests/settings
diff options
context:
space:
mode:
authorVincent Chan <plus.vincchan@gmail.com>2016-02-01 18:14:10 +0100
committerVincent Chan <plus.vincchan@gmail.com>2016-02-01 18:57:58 +0100
commitfaf48e42b7a9bf208bd2e16baa0a9cc4c602dce3 (patch)
tree89c4bfa4e2bc5458847fe45b3741b10b0cf3f586 /tests/settings
parenta2e13aea1513de2667a70d224396ed641a5dd179 (diff)
downloadnextcloud-server-faf48e42b7a9bf208bd2e16baa0a9cc4c602dce3.tar.gz
nextcloud-server-faf48e42b7a9bf208bd2e16baa0a9cc4c602dce3.zip
Move data protection check to javascript
fixes #20199
Diffstat (limited to 'tests/settings')
-rw-r--r--tests/settings/controller/CheckSetupControllerTest.php5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/settings/controller/CheckSetupControllerTest.php b/tests/settings/controller/CheckSetupControllerTest.php
index 08d4135fa12..c22ddb2e120 100644
--- a/tests/settings/controller/CheckSetupControllerTest.php
+++ b/tests/settings/controller/CheckSetupControllerTest.php
@@ -326,10 +326,6 @@ class CheckSetupControllerTest extends TestCase {
$this->clientService->expects($this->once())
->method('newClient')
->will($this->returnValue($client));
-
- $this->util->expects($this->once())
- ->method('isHtaccessWorking')
- ->will($this->returnValue(true));
$this->urlGenerator->expects($this->at(0))
->method('linkToDocs')
->with('admin-performance')
@@ -347,7 +343,6 @@ class CheckSetupControllerTest extends TestCase {
$expected = new DataResponse(
[
'serverHasInternetConnection' => false,
- 'dataDirectoryProtected' => true,
'isMemcacheConfigured' => true,
'memcacheDocs' => 'http://doc.owncloud.org/server/go.php?to=admin-performance',
'isUrandomAvailable' => self::invokePrivate($this->checkSetupController, 'isUrandomAvailable'),