Skip to content

Commit

Permalink
lmc-eu#12 correct naming conventions
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Zverina committed Jun 3, 2015
1 parent b0a1a79 commit 2aa6291
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Console/Command/RunTestsCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ protected function configure()
self::OPTION_FILTER,
null,
InputOption::VALUE_REQUIRED,
'Run only test cases matching this filter'
'Run only tests whose name is matching this filter'
)
->addOption(
self::OPTION_EXCLUDE_GROUP,
Expand Down
2 changes: 1 addition & 1 deletion src/Process/ProcessSetCreator.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public function createFromFiles(Finder $files, array $groups = null, array $excl
$this->output->writeln(sprintf(' - excluding group(s): %s', implode(', ', $excludeGroups)));
}
if ($filter) {
$this->output->writeln(sprintf(' - filtering test cases by name: %s', $filter));
$this->output->writeln(sprintf(' - filtering tests by name: %s', $filter));
}

$processSet = $this->getProcessSet();
Expand Down

0 comments on commit 2aa6291

Please sign in to comment.