diff options
Diffstat (limited to 'Lib/test/test__locale.py')
-rw-r--r-- | Lib/test/test__locale.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/test__locale.py b/Lib/test/test__locale.py index d95d3a4..58f2f04 100644 --- a/Lib/test/test__locale.py +++ b/Lib/test/test__locale.py @@ -67,7 +67,9 @@ def setUpModule(): known_numerics = { 'en_US': ('.', ','), 'de_DE' : (',', '.'), - 'fr_FR.UTF-8' : (',', ' '), + # The French thousands separator may be a breaking or non-breaking space + # depending on the platform, so do not test it + 'fr_FR' : (',', ''), 'ps_AF': ('\u066b', '\u066c'), } |