0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00
This commit is contained in:
David Goodwin 2019-02-15 21:31:32 +00:00
parent 69b9d9671c
commit d95ee79b9a

View File

@ -21,7 +21,12 @@ class DbBasicTest extends \PHPUnit\Framework\TestCase {
1,
db_insert(
'domain',
array('domain' => $domain, 'description' => 'test', 'transport' => '', 'password_expiry' => 99)
array(
'domain' => $domain,
'description' => 'test',
'transport' => '',
'password_expiry' => 99
)
)
);
@ -29,7 +34,14 @@ class DbBasicTest extends \PHPUnit\Framework\TestCase {
$this->assertEquals(1,
db_insert(
'mailbox',
array('username' => $username, 'password' => 'blah', 'name' => 'blah', 'maildir' => 'blah', 'local_part' => 'blah', 'domain' => $domain,)
array(
'username' => $username,
'password' => 'blah',
'name' => 'blah',
'maildir' => 'blah',
'local_part' => 'blah',
'domain' => $domain
)
)
);