summaryrefslogtreecommitdiffstats
path: root/tests/lib
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2015-12-01 17:06:48 +0100
committerLukas Reschke <lukas@owncloud.com>2015-12-08 08:16:24 +0100
commit0a89073c475632a296b7315d96894503a78bbf43 (patch)
treed76cf3078efce7d80308a6fa55b9694d82388f5b /tests/lib
parent235094ab5492990ed4790e5d475beedf3528705a (diff)
downloadnextcloud-server-0a89073c475632a296b7315d96894503a78bbf43.tar.gz
nextcloud-server-0a89073c475632a296b7315d96894503a78bbf43.zip
Run .htaccess updates in any case
This is the same what we also do in updater.php and thus this aligns the code. Makes the code paths more consistent.
Diffstat (limited to 'tests/lib')
-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);
- }
}