diff --git a/test/FactoryTest.php b/test/FactoryTest.php index c35c061..42eb263 100644 --- a/test/FactoryTest.php +++ b/test/FactoryTest.php @@ -247,7 +247,7 @@ public function testBarcodeObjectFactoryWithNamespaceButWithoutExtendingObjectAb $barcode = Barcode\Barcode::makeBarcode('barcodeNamespaceWithoutExtendingObjectAbstract'); } - public function testBarcodeObjectFactoryWithUnexistantBarcode() + public function testBarcodeObjectFactoryWithUnexistentBarcode() { $this->setExpectedException('Zend\ServiceManager\Exception\ServiceNotFoundException'); $barcode = Barcode\Barcode::makeBarcode('zf123', array()); @@ -329,7 +329,7 @@ public function testBarcodeFactoryWithNamespaceButWithoutExtendingRendererAbstra $renderer = Barcode\Barcode::makeRenderer('rendererNamespaceWithoutExtendingRendererAbstract'); } - public function testBarcodeRendererFactoryWithUnexistantRenderer() + public function testBarcodeRendererFactoryWithUnexistentRenderer() { $this->setExpectedException('\Zend\ServiceManager\Exception\ServiceNotFoundException'); $renderer = Barcode\Barcode::makeRenderer('zend', array());