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 'plugins/CoreConsole/RunTests.php')
-rw-r--r--plugins/CoreConsole/RunTests.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/CoreConsole/RunTests.php b/plugins/CoreConsole/RunTests.php
index 052af2ac9d..4176ab1dcc 100644
--- a/plugins/CoreConsole/RunTests.php
+++ b/plugins/CoreConsole/RunTests.php
@@ -33,11 +33,11 @@ class RunTests extends Command
protected function execute(InputInterface $input, OutputInterface $output)
{
$options = $input->getOption('options');
- $group = $input->getArgument('group');
+ $group = $input->getArgument('group');
if (!empty($group)) {
- $groups = explode(',', $group);
- $groups = array_map('ucfirst', $groups);
+ $groups = explode(',', $group);
+ $groups = array_map('ucfirst', $groups);
$options = '--group ' . implode(',', $groups) . ' ' . $options;
}