aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-12-11 11:46:37 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2015-12-11 11:46:37 +0100
commitf831d93f3f8aec6ef456f2675559cb5309a8fdb4 (patch)
tree1b0508552953cf536346ee0e45f933b6fbe322f9 /tests
parentf799b27f0e1f1021ddd2baea8f932d05af780596 (diff)
parent8903afec2687e762238d161ef9d986be9a1786a3 (diff)
downloadnextcloud-server-f831d93f3f8aec6ef456f2675559cb5309a8fdb4.tar.gz
nextcloud-server-f831d93f3f8aec6ef456f2675559cb5309a8fdb4.zip
Merge pull request #20878 from owncloud/proper-htaccess-support-in-code-signing-checker
Also run .htaccess routine when installing on another system than Apache
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/setup.php13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/lib/setup.php b/tests/lib/setup.php
index 72c84520056..bc78c14008f 100644
--- a/tests/lib/setup.php
+++ b/tests/lib/setup.php
@@ -130,17 +130,4 @@ class Test_OC_Setup extends \Test\TestCase {
->will($this->returnValue('NotAnArray'));
$this->setupClass->getSupportedDatabases();
}
-
- /**
- * This is actual more an integration test whether the version parameter in the .htaccess
- * was updated as well when the version has been incremented.
- * If it hasn't this test will fail.
- */
- public function testHtaccessIsCurrent() {
- $result = self::invokePrivate(
- $this->setupClass,
- 'isCurrentHtaccess'
- );
- $this->assertTrue($result);
- }
}