Skip to content

Commit

Permalink
Fixing more time related tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Aug 11, 2014
1 parent 553d794 commit 4413c8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/TestCase/View/Helper/TimeHelperTest.php
Expand Up @@ -59,7 +59,7 @@ public function testTimeAgoInWords() {
'title' => $timestamp,
'class' => 'time-ago-in-words'
),
'on ' . date('j/n/y', $timestamp),
'on ' . date('n/j/y', $timestamp),
'/span'
);
$this->assertHtml($expected, $result);
Expand All @@ -77,7 +77,7 @@ public function testTimeAgoInWords() {
'class' => 'time-ago-in-words',
'rel' => 'test'
),
'on ' . date('j/n/y', $timestamp),
'on ' . date('n/j/y', $timestamp),
'/span'
);
$this->assertHtml($expected, $result);
Expand Down

0 comments on commit 4413c8d

Please sign in to comment.