From 161ba875f352233c90377c335fc391bc223df6a3 Mon Sep 17 00:00:00 2001 From: Matthew Weier O'Phinney Date: Fri, 21 Jan 2011 14:19:46 -0800 Subject: [PATCH] Updated FilterChain namespace - s/SignalSlot/EventManager/g --- test/FilterChainTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/FilterChainTest.php b/test/FilterChainTest.php index 0af8de5..ed92695 100644 --- a/test/FilterChainTest.php +++ b/test/FilterChainTest.php @@ -21,7 +21,7 @@ */ namespace ZendTest\Stdlib; -use Zend\SignalSlot\FilterChain, +use Zend\EventManager\FilterChain, Zend\Stdlib\CallbackHandler; /** @@ -149,6 +149,6 @@ public function filterTestCallback1($context, array $params) public function filterReceivalCallback($context, array $params, $chain) { - $this->assertInstanceOf('Zend\SignalSlot\Filter\FilterIterator', $chain); + $this->assertInstanceOf('Zend\EventManager\Filter\FilterIterator', $chain); } }