Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/PHPUnit/Unit/FilesystemTest.php')
-rw-r--r--tests/PHPUnit/Unit/FilesystemTest.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/PHPUnit/Unit/FilesystemTest.php b/tests/PHPUnit/Unit/FilesystemTest.php
index bd77e6958d..3ecbbc2c10 100644
--- a/tests/PHPUnit/Unit/FilesystemTest.php
+++ b/tests/PHPUnit/Unit/FilesystemTest.php
@@ -44,9 +44,7 @@ class FilesystemTest extends \PHPUnit_Framework_TestCase
$input = array('xyz/1.gif', 'x/xyz.gif', 'xxyyzzgg');
$result = Filesystem::sortFilesDescByPathLength($input);
- if (SystemTestCase::isPhp7orLater()) {
- $input = array('x/xyz.gif', 'xyz/1.gif', 'xxyyzzgg');
- }
+ $input = array('x/xyz.gif', 'xyz/1.gif', 'xxyyzzgg');
$this->assertEquals($input, $result);
}