fixed a unit test

This commit is contained in:
Fabien Potencier 2010-11-10 07:50:30 +01:00
parent bfae4ad86c
commit 513163648e

View File

@ -23,7 +23,7 @@ class HttpKernelTest extends \PHPUnit_Framework_TestCase
{
$request = Request::create('/');
$container = $this->getMock('Symfony\Component\DependencyInjection\ContainerInterface');
$container->expects($this->exactly(1))
$container->expects($this->exactly(2))
->method('set')
->with('request', $request)
;