From 1ec00b85444b2d2f6b32cd1c8b03f36ab9a47a90 Mon Sep 17 00:00:00 2001 From: sasezaki Date: Thu, 9 Jun 2011 22:58:12 +0900 Subject: [PATCH] PluginLoader not throw Exception when unexist --- test/FactoryTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/FactoryTest.php b/test/FactoryTest.php index dff0fda..65de3f9 100644 --- a/test/FactoryTest.php +++ b/test/FactoryTest.php @@ -320,7 +320,7 @@ public function testBarcodeFactoryWithNamespaceButWithoutExtendingRendererAbstra public function testBarcodeRendererFactoryWithUnexistantRenderer() { - $this->setExpectedException('\Zend\Loader\Exception\InvalidArgumentException'); + $this->setExpectedException('\Zend\Barcode\Exception\InvalidArgumentException'); $renderer = Barcode\Barcode::makeRenderer('zend', array()); }