1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-02 12:48:26 +02:00

fixed wrong expected value

This commit is contained in:
Achim Ennenbach
2018-05-15 22:53:27 +02:00
parent b2c9230f2a
commit 000d649102

View File

@@ -186,7 +186,7 @@
$this->assertEquals($expected, $actual);
$actual = $this->dateObj->convert_date(mktime(12, 45, 03, 2, 5, 2018), 'inputtime');
$expected = 'Monday 05 February 2018 - 12:45:03';
$expected = '12:45 PM';
$this->assertEquals($expected, $actual);
}