summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafal Luzynski <digitalfreak@lingonborough.com>2019-05-13 23:11:28 +0200
committerPhilip Withnall <withnall@endlessm.com>2019-05-14 10:53:50 +0100
commit4feeb3ec3078b6aa8e60199a7e8c647b8916d77a (patch)
tree54a74c680f7f77ca542058ee22a5006658285dcc
parent6729a82b0cb7b3153d08ee1c1e87c0121587bd4b (diff)
downloadglib-4feeb3ec3078b6aa8e60199a7e8c647b8916d77a.tar.gz
tests: Update month name check for Greek locale
Update the abbreviated month name in the test to match the actual translation. Otherwise the test fails with false positive. Vocabulary: July (nominative) - Greek: Ιούλιος (abbreviated: Ιούλ) Of July (genitive) - Greek: Ιουλίου (abbreviated: Ιουλ) This is similar to commit 4d215e006ee69bd7a993bf853722993433adbf9a and commit 7fe793e125c316ac34edd8158df5a132cb044bc1. Closes #1776
-rw-r--r--glib/tests/date.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/glib/tests/date.c b/glib/tests/date.c
index 8eb28712b..ff13ad101 100644
--- a/glib/tests/date.c
+++ b/glib/tests/date.c
@@ -388,7 +388,7 @@ test_month_names (void)
TEST_DATE ( 1, 4, 2018, "%OB %Y", "Απρίλιος 2018");
TEST_DATE ( 1, 5, 2018, "%OB %Y", "Μάιος 2018");
TEST_DATE ( 1, 6, 2018, "%OB %Y", "Ιούνιος 2018");
- TEST_DATE (16, 7, 2018, "%e %b %Y", "16 Ιούλ 2018");
+ TEST_DATE (16, 7, 2018, "%e %b %Y", "16 Ιουλ 2018");
TEST_DATE ( 1, 8, 2018, "%Ob %Y", "Αύγ 2018");
}
else