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
+3 -3
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);
}
}
}