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:
authorsgiehl <stefan@matomo.org>2020-08-24 13:18:55 +0300
committersgiehl <stefan@matomo.org>2020-08-24 13:18:55 +0300
commit67e530d258ab2e4083746cb177d20308cbc67370 (patch)
treea925abe80dfb1d9b1de1ae6ffb4fe5996525565c /tests
parentfb4231c93c50df155658b7cfc4d6001777b782bd (diff)
fix test
Diffstat (limited to 'tests')
-rw-r--r--tests/PHPUnit/Integration/Columns/DimensionTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/PHPUnit/Integration/Columns/DimensionTest.php b/tests/PHPUnit/Integration/Columns/DimensionTest.php
index 7b91fb09c6..444ff29415 100644
--- a/tests/PHPUnit/Integration/Columns/DimensionTest.php
+++ b/tests/PHPUnit/Integration/Columns/DimensionTest.php
@@ -299,7 +299,7 @@ class ColumnDimensionTest extends IntegrationTestCase
array($type = Dimension::TYPE_MONEY, $value = 5.392, $expected = '$5.39'),
array($type = Dimension::TYPE_PERCENT, $value = 0.343, $expected = '34.3%'),
array($type = Dimension::TYPE_DURATION_S, $value = 121, $expected = '00:02:01'),
- array($type = Dimension::TYPE_DURATION_MS, $value = 0.392, $expected = '0.39s'),
+ array($type = Dimension::TYPE_DURATION_MS, $value = 392, $expected = '0.39s'),
array($type = Dimension::TYPE_BYTE, $value = 3912, $expected = '3.8 K'),
array($type = Dimension::TYPE_BOOL, $value = 0, $expected = 'No'),
array($type = Dimension::TYPE_BOOL, $value = 1, $expected = 'Yes'),