diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-12-11 11:46:37 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-12-11 11:46:37 +0100 |
commit | f831d93f3f8aec6ef456f2675559cb5309a8fdb4 (patch) | |
tree | 1b0508552953cf536346ee0e45f933b6fbe322f9 /tests | |
parent | f799b27f0e1f1021ddd2baea8f932d05af780596 (diff) | |
parent | 8903afec2687e762238d161ef9d986be9a1786a3 (diff) | |
download | nextcloud-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.php | 13 |
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); - } } |