bug #19928 [Validator] Update IpValidatorTest data set with a valid reserved IP (jakzal)

This PR was merged into the 2.7 branch.

Discussion
----------

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

| Q             | A
| ------------- | ---
| Branch?       | 2.7
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | #19885
| License       | MIT
| Doc PR        | -

The validator uses PHP filter which was recently fixed (see https://bugs.php.net/bug.php?id=72972).

Commits
-------

86a151c [Validator] Update IpValidatorTest data set with a valid reserved IP
This commit is contained in:
Nicolas Grekas 2016-09-13 13:51:44 +02:00
commit f32198954d

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'),
);
}