mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
fix spacing error
This commit is contained in:
parent
a9bbaed3d6
commit
f633241775
1 changed files with 1 additions and 1 deletions
|
@ -529,7 +529,7 @@ class CakeNumberTest extends CakeTestCase {
|
|||
$expected = 'GBP650.1200';
|
||||
$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';
|
||||
$this->assertEquals($expected, $result);
|
||||
|
||||
|
|
Loading…
Reference in a new issue