diff --git a/tests/lib/l10n.php b/tests/lib/l10n.php index bd5984add1..12eac818f8 100644 --- a/tests/lib/l10n.php +++ b/tests/lib/l10n.php @@ -53,10 +53,15 @@ class Test_L10n extends PHPUnit_Framework_TestCase { } /** - * Issue #4360: Do not call strtotime() on numeric strings. - */ + * Issue #4360: Do not call strtotime() on numeric strings. + */ public function testNumericStringToDateTime() { $l = new OC_L10N('test'); $this->assertSame('February 13, 2009 23:31', $l->l('datetime', '1234567890')); } + + public function testNumericToDateTime() { + $l = new OC_L10N('test'); + $this->assertSame('February 13, 2009 23:31', $l->l('datetime', 1234567890)); + } }