fixed tests

This commit is contained in:
Fabien Potencier 2015-01-16 15:49:28 +01:00
parent 8a870c24a6
commit b08115bd63
1 changed files with 2 additions and 2 deletions

View File

@ -154,7 +154,7 @@ class RegisterListenersPassTest extends \PHPUnit_Framework_TestCase
{
$container = new ContainerBuilder();
$container->setParameter('subscriber.class', 'Symfony\Component\EventDispatcher\Tests\DependencyInjection\SubscriberService');
$container->setParameter('subscriber.class', 'Symfony\Component\HttpKernel\Tests\DependencyInjection\SubscriberService');
$container->register('foo', '%subscriber.class%')->addTag('kernel.event_subscriber', array());
$container->register('event_dispatcher', 'stdClass');
@ -167,7 +167,7 @@ class RegisterListenersPassTest extends \PHPUnit_Framework_TestCase
'addSubscriberService',
array(
'foo',
'Symfony\Component\EventDispatcher\Tests\DependencyInjection\SubscriberService',
'Symfony\Component\HttpKernel\Tests\DependencyInjection\SubscriberService',
),
),
);