Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge branch 'cs/zendframework/zendframework#7029-no-space-before-arg…
Browse files Browse the repository at this point in the history
…ument-list-comma' into develop

Close zendframework/zendframework#7029
  • Loading branch information
Ocramius committed Dec 16, 2014
4 parents 25d156f + e5f243b + e648c9a + acb07c3 commit 298a8bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/Adapter/ConsoleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -275,23 +275,23 @@ public function testSetBarLeftChar()
{
$adapter = new Adapter\Console();

$this->setExpectedException('Zend\ProgressBar\Adapter\Exception\InvalidArgumentException','Character may not be empty');
$this->setExpectedException('Zend\ProgressBar\Adapter\Exception\InvalidArgumentException', 'Character may not be empty');
$adapter->setBarLeftChar(null);
}

public function testSetBarRightChar()
{
$adapter = new Adapter\Console();

$this->setExpectedException('Zend\ProgressBar\Adapter\Exception\InvalidArgumentException','Character may not be empty');
$this->setExpectedException('Zend\ProgressBar\Adapter\Exception\InvalidArgumentException', 'Character may not be empty');
$adapter->setBarRightChar(null);
}

public function testSetInvalidFinishAction()
{
$adapter = new Adapter\Console();

$this->setExpectedException('Zend\ProgressBar\Adapter\Exception\InvalidArgumentException','Invalid finish action specified');
$this->setExpectedException('Zend\ProgressBar\Adapter\Exception\InvalidArgumentException', 'Invalid finish action specified');
$adapter->setFinishAction('CUSTOM_FINISH_ACTION');
}

Expand Down

0 comments on commit 298a8bf

Please sign in to comment.