Skip to content
Snippets Groups Projects
Verified Commit ee5aea69 authored by Juraj Nemec's avatar Juraj Nemec
Browse files

Issue #2453785 by adammalone: Password hashing tests do not cover all options

parent 59d2480a
No related branches found
No related tags found
No related merge requests found
Pipeline #356955 canceled
Pipeline: drupal

#356965

    Pipeline: drupal

    #356964

      Pipeline: drupal

      #356963

        +7
        ......@@ -73,6 +73,7 @@ class PasswordHashingTest extends DrupalWebTestCase {
        $result = user_hash_password($password);
        $this->assertFalse(empty($result), '510 byte long password is allowed.');
        $password .= 'xx';
        $result = user_hash_password($password);
        $this->assertFalse(empty($result), '512 byte long password is allowed.');
        $password = str_repeat('€', 171);
        $result = user_hash_password($password);
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Please register or to comment