Skip to content

Commit

Permalink
Fix up tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed May 13, 2016
1 parent 86e64ba commit 4491622
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/TestCase/Console/ShellTest.php
Expand Up @@ -307,7 +307,7 @@ public function testErr()
{
$this->io->expects($this->once())
->method('err')
->with('Just a test', 1);
->with('<error>Just a test</error>', 1);

$this->Shell->err('Just a test');
}
Expand All @@ -334,7 +334,7 @@ public function testInfo()
public function testWarn()
{
$this->io->expects($this->once())
->method('err')
->method('warn')
->with('<warning>Just a test</warning>', 1);

$this->Shell->warn('Just a test');
Expand Down

0 comments on commit 4491622

Please sign in to comment.