From: Amir E. Aharoni Date: Wed, 30 Sep 2015 06:35:02 +0000 (+0300) Subject: Use correct comment format for codingStandardsIgnoreStart X-Git-Tag: 1.31.0-rc.0~9605^2 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/%7B%7B%20url_for%28%27admin_users%27%29%20%7D%7D?a=commitdiff_plain;h=733c12a799c196fe3f86117bcbe5a2736b32a4be;p=lhc%2Fweb%2Fwiklou.git Use correct comment format for codingStandardsIgnoreStart Apparently, codingStandardsIgnoreStart doesn't work with /*, and does work with //. Bug: T113852 Change-Id: I2e7f200617091acc8a79be09763a91c28f5045f2 --- diff --git a/tests/phpunit/includes/password/BcryptPasswordTest.php b/tests/phpunit/includes/password/BcryptPasswordTest.php index 8ac419ffce..d90567f6cc 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 } }