summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-02-02 15:59:07 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2016-02-02 15:59:07 +0100
commit0e95b9f2d560f5fc177e672162e995341cfba025 (patch)
treedbe69345fb5ae4a0218f7c7b038daefd03f3e407 /tests
parent8049b6e9984e1eeb2eeac388be8fc473b0b60cc0 (diff)
parent59cfeae2cdb02377280efbedd8e7c1335932fdc4 (diff)
downloadnextcloud-server-0e95b9f2d560f5fc177e672162e995341cfba025.tar.gz
nextcloud-server-0e95b9f2d560f5fc177e672162e995341cfba025.zip
Merge pull request #22054 from vincchan/vincchan/fix#20199
Move data protection check to javascript
Diffstat (limited to 'tests')
-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'),