diff --git a/tests/phpunit/includes/password/BcryptPasswordTest.php b/tests/phpunit/includes/password/BcryptPasswordTest.php index 8ac419ffceb..d90567f6cc1 100644 --- a/tests/phpunit/includes/password/BcryptPasswordTest.php +++ b/tests/phpunit/includes/password/BcryptPasswordTest.php @@ -12,7 +12,7 @@ class BcryptPasswordTestCase extends PasswordTestCase { } public static function providePasswordTests() { - /** @codingStandardsIgnoreStart Generic.Files.LineLength.TooLong */ + // @codingStandardsIgnoreStart Generic.Files.LineLength return array( // Tests from glibc bcrypt implementation array( true, ':bcrypt:5$CCCCCCCCCCCCCCCCCCCCC.$E5YPO9kmyuRGyh0XouQYb4YMJKvyOeW', "U*U" ), @@ -35,6 +35,6 @@ class BcryptPasswordTestCase extends PasswordTestCase { array( false, ':bcrypt:5$CCCCCCCCCCCCCCCCCCCCC.$E5YPO9kmyuRGyh0XouQYb4YMJKvyOeW', "UXU" ), array( false, ':bcrypt:5$CCCCCCCCCCCCCCCCCCCCC.$E5YPO9kmyuRGyh0XouQYb4YMJKvyOeW', "" ), ); - /** @codingStandardsIgnoreEnd */ + // @codingStandardsIgnoreEnd } }