Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
euromark committed Jul 17, 2013
1 parent 72508cb commit 22d6625
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Test/Case/Utility/CakeTimeTest.php
Expand Up @@ -203,7 +203,7 @@ public function testTimeAgoInWordsCustomStrings() {
strtotime('+4 months +2 weeks +3 days'),
array('absoluteString' => 'exactly on %s', 'accuracy' => array('year' => 'year'), 'end' => '+2 months')
);
$expected = 'exactly on 3/12/13';
$expected = 'exactly on ' . date('j/n/y', strtotime('+4 months +2 weeks +3 days'));
$this->assertEquals($expected, $result);
}

Expand Down

0 comments on commit 22d6625

Please sign in to comment.