diff options
author | Mike FABIAN <mfabian@redhat.com> | 2018-04-24 15:04:43 +0200 |
---|---|---|
committer | Mike FABIAN <mfabian@redhat.com> | 2018-04-24 15:08:03 +0200 |
commit | e5aea5c314f1f2c4e31e2ca29578ca1a9f2b9b55 (patch) | |
tree | cdb00e28e9c9995b0d35a2c567904c8e2795b113 | |
parent | 9320ca88a197d3620d3553ccc2d9402d981d7e23 (diff) | |
download | glibc-e5aea5c314f1f2c4e31e2ca29578ca1a9f2b9b55.tar.gz glibc-e5aea5c314f1f2c4e31e2ca29578ca1a9f2b9b55.tar.xz glibc-e5aea5c314f1f2c4e31e2ca29578ca1a9f2b9b55.zip |
Fix tst-strfmon_l test for hr_HR locale
The test needs to be adapted for the change in the thousands separators: “hr_HR locale: fix thousands_sep and mon_thousands_sep” [BZ #23094]
-rw-r--r-- | stdlib/tst-strfmon_l.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/tst-strfmon_l.c b/stdlib/tst-strfmon_l.c index 664ac8ca27..1994d623eb 100644 --- a/stdlib/tst-strfmon_l.c +++ b/stdlib/tst-strfmon_l.c @@ -163,11 +163,11 @@ static const struct locale_pair tests[] = "hr_HR.UTF-8", { { - "HRK 1\u202f234\u202f567,89", "1\u202f234\u202f567,89 kn", + "HRK 1.234.567,89", "1.234.567,89 kn", "HRK 1234567,89", "1234567,89 kn" }, { - "-HRK 1\u202f234\u202f567,89", "-1\u202f234\u202f567,89 kn", + "-HRK 1.234.567,89", "-1.234.567,89 kn", "-HRK 1234567,89", "-1234567,89 kn" } } |