From 733c12a799c196fe3f86117bcbe5a2736b32a4be Mon Sep 17 00:00:00 2001 From: "Amir E. Aharoni" Date: Wed, 30 Sep 2015 09:35:02 +0300 Subject: [PATCH] Use correct comment format for codingStandardsIgnoreStart Apparently, codingStandardsIgnoreStart doesn't work with /*, and does work with //. Bug: T113852 Change-Id: I2e7f200617091acc8a79be09763a91c28f5045f2 --- tests/phpunit/includes/password/BcryptPasswordTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 } } -- 2.20.1