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

ensure timestamps are non-empty after update for mailbox

This commit is contained in:
David Goodwin 2021-04-05 21:09:55 +01:00
parent 3ad0591006
commit c300a8070e

View File

@ -174,6 +174,9 @@ class MailboxHandlerTest extends \PHPUnit\Framework\TestCase
$this->assertEquals(123456, $details['quota']);
$this->assertEquals('test person 1234', $details['name']);
$this->assertNotEmpty($details['_modified']);
$this->assertNotEmpty($details['_created']);
$this->assertNotEquals($details['_modified'], $details['_created']);
$found = true;