diff --git a/tests/Zend/Form/FormTest.php b/tests/Zend/Form/FormTest.php index 2dd93d442b3..59393281f3d 100644 --- a/tests/Zend/Form/FormTest.php +++ b/tests/Zend/Form/FormTest.php @@ -810,6 +810,9 @@ public function testCanCorrectlyExtractDataFromOneToManyRelationship() public function testCanCorrectlyPopulateDataToOneToManyEntites() { + if (!extension_loaded('intl')) { + $this->markTestSkipped("The Intl extension is not loaded"); + } $product = $this->getOneToManyEntity(); $emptyProduct = new TestAsset\Entity\Product();