Skip to content

Commit

Permalink
fix spacing error
Browse files Browse the repository at this point in the history
  • Loading branch information
euromark committed Mar 10, 2013
1 parent a9bbaed commit f633241
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Test/Case/Utility/CakeNumberTest.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ public function testCurrencyOptions() {
$expected = 'GBP650.1200'; $expected = 'GBP650.1200';
$this->assertEquals($expected, $result); $this->assertEquals($expected, $result);


$result = $this->Number->currency($value, 'GBP', array('before '=> '£ ', 'escape' => true)); $result = $this->Number->currency($value, 'GBP', array('before' => '£ ', 'escape' => true));
$expected = '£ 1,234,567.89'; $expected = '£ 1,234,567.89';
$this->assertEquals($expected, $result); $this->assertEquals($expected, $result);


Expand Down

0 comments on commit f633241

Please sign in to comment.