Fixing test for Shell::err().

This commit is contained in:
davidpersson 2009-09-27 16:23:57 +02:00
parent 7fc14f47b3
commit 3de2f6b671

View file

@ -256,7 +256,7 @@ class ShellTest extends CakeTestCase {
$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();
}