Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
euromark committed Nov 17, 2014
1 parent 13cadcc commit 1b4821d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/TestCase/I18n/NumberTest.php
Expand Up @@ -412,7 +412,7 @@ public function testToPercentage() {
$expected = '45.60%';
$this->assertEquals($expected, $result);

$result = $this->Number->toPercentage(0.456, 2, array('locale' => 'de-DE'));
$result = $this->Number->toPercentage(0.456, 2, array('locale' => 'de-DE', 'multiply' => true));
$expected = '45,60%';
$this->assertEquals($expected, $result);
}
Expand Down

0 comments on commit 1b4821d

Please sign in to comment.