Merge "Make IPTest::isNotIPAddress a test function"
authorjenkins-bot <jenkins-bot@gerrit.wikimedia.org>
Sun, 18 Mar 2018 03:58:51 +0000 (03:58 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Sun, 18 Mar 2018 03:58:52 +0000 (03:58 +0000)
tests/phpunit/includes/libs/IPTest.php

index 6a75181..9702c82 100644 (file)
@@ -16,7 +16,7 @@ class IPTest extends PHPUnit\Framework\TestCase {
         * @covers IP::isIPAddress
         * @dataProvider provideInvalidIPs
         */
-       public function isNotIPAddress( $val, $desc ) {
+       public function testIsNotIPAddress( $val, $desc ) {
                $this->assertFalse( IP::isIPAddress( $val ), $desc );
        }