You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2015/03/01 23:17:29 UTC

svn commit: r1663173 - /commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/time/FastDateParserSDFTest.java

Author: sebb
Date: Sun Mar  1 22:17:29 2015
New Revision: 1663173

URL: http://svn.apache.org/r1663173
Log:
Comment

Modified:
    commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/time/FastDateParserSDFTest.java

Modified: commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/time/FastDateParserSDFTest.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/time/FastDateParserSDFTest.java?rev=1663173&r1=1663172&r2=1663173&view=diff
==============================================================================
--- commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/time/FastDateParserSDFTest.java (original)
+++ commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/time/FastDateParserSDFTest.java Sun Mar  1 22:17:29 2015
@@ -26,7 +26,7 @@ public class FastDateParserSDFTest {
     public static Collection<Object[]> data() {
         return Arrays.asList(new Object [][]{
                 // General Time zone tests
-                {"z yyyy", "GMT 2010",       Locale.UK, true}, // no offset specified, but seems to be allowed
+                {"z yyyy", "GMT 2010",       Locale.UK, true}, // no offset specified, but this is allowed as a TimeZone name
                 {"z yyyy", "GMT-123 2010",   Locale.UK, false},
                 {"z yyyy", "GMT-1234 2010",  Locale.UK, false},
                 {"z yyyy", "GMT-12:34 2010", Locale.UK, true},