Merge "Use correct comment format for codingStandardsIgnoreStart"

This commit is contained in:
jenkins-bot 2015-10-01 19:48:33 +00:00 committed by Gerrit Code Review
commit cf39dc03db

View file

@ -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
}
}