You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by ol...@apache.org on 2005/04/23 17:44:40 UTC

svn commit: r164397 - /jakarta/commons/proper/httpclient/trunk/src/test/org/apache/commons/httpclient/TestExceptions.java

Author: olegk
Date: Sat Apr 23 08:44:39 2005
New Revision: 164397

URL: http://svn.apache.org/viewcvs?rev=164397&view=rev
Log:
Fixed broken suite() method

Modified:
    jakarta/commons/proper/httpclient/trunk/src/test/org/apache/commons/httpclient/TestExceptions.java

Modified: jakarta/commons/proper/httpclient/trunk/src/test/org/apache/commons/httpclient/TestExceptions.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/httpclient/trunk/src/test/org/apache/commons/httpclient/TestExceptions.java?rev=164397&r1=164396&r2=164397&view=diff
==============================================================================
--- jakarta/commons/proper/httpclient/trunk/src/test/org/apache/commons/httpclient/TestExceptions.java (original)
+++ jakarta/commons/proper/httpclient/trunk/src/test/org/apache/commons/httpclient/TestExceptions.java Sat Apr 23 08:44:39 2005
@@ -54,14 +54,14 @@
 
     // ------------------------------------------------------------------- Main
     public static void main(String args[]) {
-        String[] testCaseName = { TestChallengeParser.class.getName() };
+        String[] testCaseName = { TestExceptions.class.getName() };
         junit.textui.TestRunner.main(testCaseName);
     }
 
     // ------------------------------------------------------- TestCase Methods
 
     public static Test suite() {
-        return new TestSuite(TestChallengeParser.class);
+        return new TestSuite(TestExceptions.class);
     }
 
     /** Make sure that you can retrieve the "cause" from an HttpException */



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