Skip to content

Commit 7ddfe73

Browse files
committed
Fix #77940: test using outdated mon_thousands_sep for Swedish
Of course, we should expect a comma, not a period.
1 parent bfbfb9d commit 7ddfe73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/standard/tests/strings/bug65769.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ foreach ($locales as $locale) {
2727
$lconv['mon_thousands_sep']
2828
);
2929
if ($locale === 'Swedish_Sweden.1252') {
30-
var_dump(in_array($lconv['mon_thousands_sep'], [',', ' ']));
30+
var_dump(in_array($lconv['mon_thousands_sep'], ['.', ' ']));
3131
}
3232
echo '++++++++++++++++++++++', "\n";
3333
}

0 commit comments

Comments
 (0)