Fix test based on new CLDR data.
Patch by: jat
git-svn-id: https://google-web-toolkit.googlecode.com/svn/releases/1.6@4876 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/test/com/google/gwt/i18n/client/DateTimeFormat_de_Test.java b/user/test/com/google/gwt/i18n/client/DateTimeFormat_de_Test.java
index 28f6003..0185111 100644
--- a/user/test/com/google/gwt/i18n/client/DateTimeFormat_de_Test.java
+++ b/user/test/com/google/gwt/i18n/client/DateTimeFormat_de_Test.java
@@ -26,6 +26,7 @@
@SuppressWarnings("deprecation")
public class DateTimeFormat_de_Test extends GWTTestCase {
+ @Override
public String getModuleName() {
return "com.google.gwt.i18n.I18NTest_de";
}
@@ -38,7 +39,7 @@
public void test_EEEMMMddyy() {
Date date = new Date(2006 - 1900, 6, 27, 13, 10, 10);
- assertEquals("Do, Jul 27, 06",
+ assertEquals("Do., Jul 27, 06",
DateTimeFormat.getFormat("EEE, MMM d, yy").format(date));
}