Browse Source

Remove unsed option

ADmad 10 years ago
parent
commit
d758a11a61
1 changed files with 1 additions and 2 deletions
  1. 1 2
      tests/TestCase/I18n/NumberTest.php

+ 1 - 2
tests/TestCase/I18n/NumberTest.php

@@ -550,8 +550,7 @@ class NumberTest extends TestCase
         $this->assertEquals('₹ 15,000.00', $result);
 
         Number::config('en_IN', \NumberFormatter::CURRENCY, [
-            'pattern' => '¤ #,##,##0',
-            'persistOptions' => true
+            'pattern' => '¤ #,##,##0'
         ]);
 
         $result = $this->Number->currency(15000, 'INR', ['locale' => 'en_IN']);