We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fe2777 commit 17fbb7eCopy full SHA for 17fbb7e
app/code/Magento/Directory/Test/Unit/Model/CurrencyTest.php
@@ -138,12 +138,16 @@ function (array $args) {
138
*/
139
public function getOutputFormatDataProvider(): array
140
{
141
+ $ar_DZ = "\u{062C}.\u{0645}.\u{200F}\u{00A0}%s";
142
+ if (version_compare(PHP_VERSION, '8.3', '>=')) {
143
+ $ar_DZ = "%s\u{00A0}\u{062C}.\u{0645}.\u{200F}";
144
+ }
145
return [
146
'en_US:USD' => ['en_US', 'USD', '$%s'],
147
'en_US:PLN' => ['en_US', 'PLN', "PLN\u{00A0}%s"],
148
'en_US:PKR' => ['en_US', 'PKR', "PKR\u{00A0}%s"],
149
'af_ZA:VND' => ['af_ZA', 'VND', "\u{20AB}%s"],
- 'ar_DZ:EGP' => ['ar_DZ', 'EGP', "\u{062C}.\u{0645}.\u{200F}\u{00A0}%s"],
150
+ 'ar_DZ:EGP' => ['ar_DZ', 'EGP', $ar_DZ],
151
'ar_SA:USD' => ['ar_SA', 'USD', "%s\u{00A0}US$"],
152
'ar_SA:LBP' => ['ar_SA', 'LBP', "%s\u{00A0}\u{0644}.\u{0644}.\u{200F}"],
153
'fa_IR:USD' => ['fa_IR', 'USD', "\u{200E}$%s"],
0 commit comments