Add support for Argon2 password hashing
[lhc/web/wiklou.git] / tests / phpunit / includes / password / PasswordTest.php
index 65c9199..61a5147 100644 (file)
  * @covers InvalidPassword
  */
 class PasswordTest extends MediaWikiTestCase {
-       public function testInvalidUnequalInvalid() {
-               $passwordFactory = new PasswordFactory();
-               $invalid1 = $passwordFactory->newFromCiphertext( null );
-               $invalid2 = $passwordFactory->newFromCiphertext( null );
-
-               $this->assertFalse( $invalid1->equals( $invalid2 ) );
-       }
-
        public function testInvalidPlaintext() {
                $passwordFactory = new PasswordFactory();
                $invalid = $passwordFactory->newFromPlaintext( null );