You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sc...@apache.org on 2005/02/05 14:17:30 UTC

svn commit: r151490 - jakarta/commons/proper/net/trunk/src/test/org/apache/commons/net/ftp/FTPClientConfigFunctionalTest.java

Author: scohen
Date: Sat Feb  5 05:17:28 2005
New Revision: 151490

URL: http://svn.apache.org/viewcvs?view=rev&rev=151490
Log:
fix syntax error

Modified:
    jakarta/commons/proper/net/trunk/src/test/org/apache/commons/net/ftp/FTPClientConfigFunctionalTest.java

Modified: jakarta/commons/proper/net/trunk/src/test/org/apache/commons/net/ftp/FTPClientConfigFunctionalTest.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/net/trunk/src/test/org/apache/commons/net/ftp/FTPClientConfigFunctionalTest.java?view=diff&r1=151489&r2=151490
==============================================================================
--- jakarta/commons/proper/net/trunk/src/test/org/apache/commons/net/ftp/FTPClientConfigFunctionalTest.java (original)
+++ jakarta/commons/proper/net/trunk/src/test/org/apache/commons/net/ftp/FTPClientConfigFunctionalTest.java Sat Feb  5 05:17:28 2005
@@ -22,7 +22,6 @@
 import java.util.Calendar;
 import java.util.Comparator;
 import java.util.Iterator;
-import java.util.TimeZone;
 import java.util.TreeSet;
 
 /*
@@ -143,7 +142,7 @@
         
         // test that notwithstanding any time zone differences, the newest file
         // is older than now.
-        assertTrue(lastfile.getTimestamp().getTime().before(now);
+        assertTrue(lastfile.getTimestamp().getTime().before(now));
         Calendar first = firstfile.getTimestamp();
 
         // test that the oldest is less than two days older than the newest 



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org