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/Core/AssetManagerTest.php')
-rw-r--r--tests/PHPUnit/Core/AssetManagerTest.php6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/PHPUnit/Core/AssetManagerTest.php b/tests/PHPUnit/Core/AssetManagerTest.php
index 826894fa3f..24cd73244b 100644
--- a/tests/PHPUnit/Core/AssetManagerTest.php
+++ b/tests/PHPUnit/Core/AssetManagerTest.php
@@ -14,8 +14,6 @@ class AssetManagerTest extends PHPUnit_Framework_TestCase
public function testPrioritySort()
{
$buckets = array(
- 'themes/base.css',
- 'themes/',
'libs/base.css',
'libs/',
'plugins/',
@@ -24,18 +22,14 @@ class AssetManagerTest extends PHPUnit_Framework_TestCase
$data = array(
'plugins/xyz',
'plugins/abc',
- 'themes/base.css',
'libs/xyz',
'libs/base.css',
'libs/abc',
'plugins/xyz',
- 'themes/test',
'libs/xyz',
);
$expected = array(
- 'themes/base.css',
- 'themes/test',
'libs/base.css',
'libs/xyz',
'libs/abc',