mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
Fixed code-standards complain by php-cs, thanks to @MrPetovan
This commit is contained in:
parent
b1cf4cbbd5
commit
913a4a5dc0
1 changed files with 3 additions and 1 deletions
|
@ -50,7 +50,9 @@ class TemporalTest extends TestCase
|
|||
|
||||
// Format current date/time - 1 minute into "MySQL" format
|
||||
$minuteAgo = date('Y-m-d H:i:s', time() - 60);
|
||||
$format = DI::l10n()->t('%1$d %2$s ago');
|
||||
$format = DI::l10n()->t('%1$d %2$s ago');
|
||||
|
||||
// Should be both equal
|
||||
self::assertEquals(
|
||||
Temporal::getRelativeDate($minuteAgo),
|
||||
sprintf($format, 1, DI::l10n()->t('minute'))
|
||||
|
|
Loading…
Reference in a new issue