From 27aec6b6fc655f4f562397d2cb442118f87b96e0 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 1 Apr 2009 21:17:35 +0000 Subject: [PATCH] expect 4 digit year in French locale under all platforms git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59973 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- tests/intl/intltest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/intl/intltest.cpp b/tests/intl/intltest.cpp index 40f31f06bd..8cd083415f 100644 --- a/tests/intl/intltest.cpp +++ b/tests/intl/intltest.cpp @@ -152,7 +152,7 @@ void IntlTestCase::DateTimeFmt() // standard format uses slashes) static const char *FRENCH_DATE_FMT = "%d.%m.%Y"; #else - static const char *FRENCH_DATE_FMT = "%d/%m/%y"; + static const char *FRENCH_DATE_FMT = "%d/%m/%Y"; #endif CompareFormats( "French short date", FRENCH_DATE_FMT, -- 2.50.0