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
path: root/tests
diff options
context:
space:
mode:
authorMatthieu Napoli <matthieu@mnapoli.fr>2014-12-18 02:12:00 +0300
committerMatthieu Napoli <matthieu@mnapoli.fr>2014-12-18 02:12:34 +0300
commit0b8c00b6e8baa12ad09069e641a9ff7da3f6288f (patch)
treed3b99af2d0a9548761d2950cfe8c1b47e5901aca /tests
parentb6f21803aa861ad60f83aad4d4402d0fce2f5641 (diff)
Commented out a test case because the locale is platform dependent which makes this bit of test fail
Diffstat (limited to 'tests')
-rw-r--r--tests/PHPUnit/Unit/Metrics/FormatterTest.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/PHPUnit/Unit/Metrics/FormatterTest.php b/tests/PHPUnit/Unit/Metrics/FormatterTest.php
index 8ef4831299..ce8c268b08 100644
--- a/tests/PHPUnit/Unit/Metrics/FormatterTest.php
+++ b/tests/PHPUnit/Unit/Metrics/FormatterTest.php
@@ -142,8 +142,9 @@ class FormatterTest extends \PHPUnit_Framework_TestCase
array(0.14, '0,14'),
array(0.14567, '0,15'),
array(100.1234, '100,12'),
- array(1000.45, '1.000,45'),
- array(23456789.00, '23.456.789,00')
+ // Those last two are commented because locales are platform dependent, on some platforms the separator is '' instead of '.'
+// array(1000.45, '1.000,45'),
+// array(23456789.00, '23.456.789,00'),
);
}