0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00

composer format

This commit is contained in:
David Goodwin 2021-09-25 20:34:32 +01:00
parent 55e7515c9c
commit 561216c83d

View File

@ -182,7 +182,6 @@ class PaCryptTest extends \PHPUnit\Framework\TestCase
public function testObviousMechs()
{
global $CONF;
$mechs = [
@ -199,7 +198,6 @@ class PaCryptTest extends \PHPUnit\Framework\TestCase
];
foreach ($mechs as $mech => $example_hash) {
if ($mech == 'mysql_encrypt' && Config::read_string('database_type') != 'mysql') {
continue;
}
@ -217,7 +215,6 @@ class PaCryptTest extends \PHPUnit\Framework\TestCase
$x = pacrypt('test123', $example_hash);
$this->assertEquals($example_hash, $x);
}
}
}