[Validator] Update IpValidatorTest data set with a valid reserved IP

The validator uses PHP filter which was recently fixed (see https://bugs.php.net/bug.php?id=72972).
This commit is contained in:
Jakub Zalas 2016-09-13 12:11:56 +01:00
parent 2e938491d6
commit 86a151c9f5

View File

@ -218,7 +218,7 @@ class IpValidatorTest extends AbstractConstraintValidatorTest
{
return array(
array('0.0.0.0'),
array('224.0.0.1'),
array('240.0.0.1'),
array('255.255.255.255'),
);
}