1
0
Fork 0
mirror of synced 2024-09-29 08:51:28 +13:00

Update PasswordTest.php

This commit is contained in:
Mou Ikkai 2020-09-30 17:48:21 -04:00 committed by GitHub
parent 1f680cbb44
commit bce17a6fd6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,12 +12,12 @@ class PasswordTestTest extends TestCase
*/
protected $object = null;
public function setUp()
public function setUp(): void
{
$this->object = new Password();
}
public function tearDown()
public function tearDown(): void
{
}
@ -36,4 +36,4 @@ class PasswordTestTest extends TestCase
$this->assertEquals($this->object->isValid('WUnOZcn0piQMN8Mh31xw4KQPF0gcNGVA'), true);
$this->assertEquals($this->object->isValid('WUnOZcn0piQMN8Mh31xw4KQPF0gcNGVAx'), false);
}
}
}