Skip to content

Commit

Permalink
bug #19928 [Validator] Update IpValidatorTest data set with a valid r…
Browse files Browse the repository at this point in the history
…eserved 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
  • Loading branch information
nicolas-grekas committed Sep 13, 2016
2 parents 68b8dab + 86a151c commit f321989
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -218,7 +218,7 @@ public function getInvalidReservedIpsV4()
{
return array(
array('0.0.0.0'),
array('224.0.0.1'),
array('240.0.0.1'),
array('255.255.255.255'),
);
}
Expand Down

0 comments on commit f321989

Please sign in to comment.