Skip to content

Commit

Permalink
Fixing test for Shell::err().
Browse files Browse the repository at this point in the history
  • Loading branch information
mariuswilms committed Sep 27, 2009
1 parent 7fc14f4 commit 3de2f6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cake/tests/cases/console/libs/shell.test.php
Expand Up @@ -256,7 +256,7 @@ function testErr() {
$this->Shell->Dispatch->expectAt(2, 'stderr', array("Just\na\ntest\n\n"));
$this->Shell->err(array('Just', 'a', 'test'), 2);

$this->Shell->Dispatch->expectAt(3, 'stderr', array("\n", false));
$this->Shell->Dispatch->expectAt(3, 'stderr', array("\n"));
$this->Shell->err();
}

Expand Down

0 comments on commit 3de2f6b

Please sign in to comment.