Skip to content

Commit

Permalink
Don't highlight linebreak.
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed May 3, 2017
1 parent e4c8716 commit 25ac8d2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions components/lib/Components/Qc/Tasks.php
Expand Up @@ -119,9 +119,9 @@ public function run(
foreach ($selected_tasks as $task) {
$output->bold(str_repeat('-', 30));
$output->ok(
'Running ' . $task->getName() . ' on ' . $component->getName() .
"\n"
'Running ' . $task->getName() . ' on ' . $component->getName()
);
$output->plain('');

$numErrors = $task->run($options);

Expand Down
3 changes: 2 additions & 1 deletion components/lib/Components/Runner/Release.php
Expand Up @@ -89,8 +89,9 @@ public function run()
$unit = $this->_qc->getTask('unit', $component);
if (!$unit->validate($options)) {
$this->_output->info(
'Running ' . $unit->getName() . ' on ' . $component->getName() . "\n"
'Running ' . $unit->getName() . ' on ' . $component->getName()
);
$this->_output->plain('');

if ($unit->run($options)) {
$this->_output->warn('Aborting due to unit test errors.');
Expand Down

0 comments on commit 25ac8d2

Please sign in to comment.