[HttpFoundation] fixed a test

This commit is contained in:
Fabien Potencier 2012-03-23 18:01:05 +01:00
parent 09ab6430c0
commit afdecaf542
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ class FlashBagTest extends \PHPUnit_Framework_TestCase
$i = 0;
foreach ($this->bag as $key => $val) {
$this->assertEquals($flashes[$key], $val);
$this->assertEquals(array($flashes[$key]), $val);
$i++;
}