corrected name of test case class

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137011 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Steven Caswell 2002-09-11 19:40:35 +00:00
parent 8ac7a8a0f4
commit 5adc254330
1 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ import junit.textui.TestRunner;
* Tests the org.apache.commons.lang.exception.NestableError class.
*
* @author <a href="mailto:steven@caswell.name">Steven Caswell</a>
* @version $Id: NestableErrorTestCase.java,v 1.2 2002/09/11 18:58:05 stevencaswell Exp $
* @version $Id: NestableErrorTestCase.java,v 1.3 2002/09/11 19:40:35 stevencaswell Exp $
*/
public class NestableErrorTestCase extends AbstractNestableTestCase
{
@ -92,7 +92,7 @@ public class NestableErrorTestCase extends AbstractNestableTestCase
*/
public static Test suite()
{
return new TestSuite(ANestableExceptionTestCase.class);
return new TestSuite(NestableErrorTestCase.class);
}
/**