Skip to content

Commit

Permalink
[HttpKernel] Fixed a test (compiler pass class name has been changed).
Browse files Browse the repository at this point in the history
  • Loading branch information
jakzal authored and fabpot committed Oct 10, 2013
1 parent 71b1baf commit e01461d
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -12,7 +12,6 @@
namespace Symfony\Component\HttpKernel\Tests\DependencyInjection;

use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Definition;
use Symfony\Component\HttpKernel\DependencyInjection\RegisterListenersPass;

class RegisterListenersPassTest extends \PHPUnit_Framework_TestCase
Expand Down Expand Up @@ -127,7 +126,7 @@ public function testAbstractEventListener()
$container->register('foo', 'stdClass')->setAbstract(true)->addTag('kernel.event_listener', array());
$container->register('event_dispatcher', 'stdClass');

$registerListenersPass = new RegisterKernelListenersPass();
$registerListenersPass = new RegisterListenersPass();
$registerListenersPass->process($container);
}
}
Expand Down

0 comments on commit e01461d

Please sign in to comment.