Change cases of assertTrue in tests

This commit is contained in:
Phy 2019-06-17 16:58:12 -04:00
parent 862a2eaed2
commit b53267d3a1
No known key found for this signature in database
GPG Key ID: D475AA55A8144239
1 changed files with 2 additions and 2 deletions

View File

@ -93,11 +93,11 @@ class auth_password_test extends DokuWikiTest {
}
function test_verifypassword_drupal_sha512() {
$this->asserttrue(auth_verifypassword('drupal_sha512', '$S$D7JxIm0f7QKO3zjwVS1RH4AW8sYvmLjO0.Rn4swH0JVt6OrZ4yzZ'));
$this->assertTrue(auth_verifypassword('drupal_sha512', '$S$D7JxIm0f7QKO3zjwVS1RH4AW8sYvmLjO0.Rn4swH0JVt6OrZ4yzZ'));
}
function test_verifypassword_drupal_migrated_6to7() {
$this->asserttrue(auth_verifypassword('pouette1234', 'U$S$9c47LGZuhR6TvhRQXzymkJIQ3mXthUCc6KDEGTt4B7eOL/H9Ykuy'));
$this->assertTrue(auth_verifypassword('pouette1234', 'U$S$9c47LGZuhR6TvhRQXzymkJIQ3mXthUCc6KDEGTt4B7eOL/H9Ykuy'));
}
function test_verifyPassword_seafilepbkdf2() {