You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2015/04/06 22:11:19 UTC

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

Author: britter
Date: Mon Apr  6 20:11:19 2015
New Revision: 1671686

URL: http://svn.apache.org/r1671686
Log:
Remove another necessary assignment

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

Modified: commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/time/DateUtilsTest.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/time/DateUtilsTest.java?rev=1671686&r1=1671685&r2=1671686&view=diff
==============================================================================
--- commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/time/DateUtilsTest.java (original)
+++ commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/time/DateUtilsTest.java Mon Apr  6 20:11:19 2015
@@ -290,6 +290,7 @@ public class DateUtilsTest {
             fail();
         } catch (final ParseException ex) {}
     }
+
     // LANG-486
     @Test
     public void testParseDateWithLeniency() throws Exception {
@@ -301,7 +302,7 @@ public class DateUtilsTest {
         assertEquals(cal.getTime(), date);
         
         try {
-            date = DateUtils.parseDateStrictly(dateStr, parsers);
+            DateUtils.parseDateStrictly(dateStr, parsers);
             fail();
         } catch (final ParseException ex) {}
     }