From 41741d4decc79f8f6046da801ad318dbc104265e Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Wed, 7 Sep 2011 20:28:49 +0000 Subject: [PATCH] complement r96386 tests --- tests/phpunit/includes/IPTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/includes/IPTest.php b/tests/phpunit/includes/IPTest.php index bd1113b336..acc6ebd4cf 100644 --- a/tests/phpunit/includes/IPTest.php +++ b/tests/phpunit/includes/IPTest.php @@ -276,7 +276,7 @@ class IPTest extends MediaWikiTestCase { foreach ( $private as $p ) { $this->assertFalse( IP::isPublic( $p ), "$p is not a public IP address" ); } - $public = array( '2001:5c0:1000:a::133', 'fc::3' ); + $public = array( '2001:5c0:1000:a::133', 'fc::3', '00FC::' ); foreach ( $public as $p ) { $this->assertTrue( IP::isPublic( $p ), "$p is a public IP address" ); } -- 2.20.1