Skip to content

Commit a9bbaed

Browse files
author
euromark
committed
fix coding standards
1 parent 8209097 commit a9bbaed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/Cake/Test/Case/Utility/CakeNumberTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -529,15 +529,15 @@ public function testCurrencyOptions() {
529529
$expected = 'GBP650.1200';
530530
$this->assertEquals($expected, $result);
531531

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

536536
$result = $this->Number->currency('0.35', 'USD', array('after' => false));
537537
$expected = '$0.35';
538538
$this->assertEquals($expected, $result);
539539

540-
$result = $this->Number->currency('0.35', 'GBP', array('before'=>'£', 'after' => false, 'escape' => false));
540+
$result = $this->Number->currency('0.35', 'GBP', array('before' => '£', 'after' => false, 'escape' => false));
541541
$expected = '£0.35';
542542
$this->assertEquals($expected, $result);
543543

0 commit comments

Comments
 (0)