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:
authormattab <matthieu.aubry@gmail.com>2016-04-11 06:00:57 +0300
committermattab <matthieu.aubry@gmail.com>2016-04-11 06:00:57 +0300
commitd5a329b285acafbb71c498a9b0dab3511a4ee45c (patch)
treed78582bf111f314056ba5e4dbe2e129dc399674f /plugins
parent92bb72883c53c77a1c7adce13dcf817127188764 (diff)
Select 10 times more rows so that resultset after grouping is more likely to contain enough records
Diffstat (limited to 'plugins')
-rw-r--r--plugins/API/tests/Unit/CsvRendererTest.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/API/tests/Unit/CsvRendererTest.php b/plugins/API/tests/Unit/CsvRendererTest.php
index 9cc66e7277..50a9822191 100644
--- a/plugins/API/tests/Unit/CsvRendererTest.php
+++ b/plugins/API/tests/Unit/CsvRendererTest.php
@@ -121,6 +121,7 @@ The\nOutput', $response);
return array(
// we prefix with quotes
array('=test()', '\'=test()'),
+ array('=test()%%', '\'=test()%%'),
array('=1+1', '\'=1+1'),
array('@1+1', '\'@1+1'),
array('+1+1', '\'+1+1'),
@@ -137,12 +138,14 @@ The\nOutput', $response);
array('2@', '2@'),
array('20000000', '20000000'),
array('10%', '10%'),
+ array('%%', '%%'),
array('10.5%', '10.5%'),
array('-10.5%', '-10.5%'),
array('+10,5%', '"\'+10,5%"'),
array('10,5', '"10,5"'),
array('1+test()', '1+test()'),
array('1+test@', '1+test@'),
+ array('%10%5', '%10%5'),
array('', ''),
array(0, '0'),
array(2.2, '2.2'),