Author: niallp Date: Thu Jan 28 12:05:10 2010 New Revision: 904051 URL: http://svn.apache.org/viewvc?rev=904051&view=rev Log: Rename TestCase -> Test
Modified: commons/proper/lang/branches/LANG_2_X/src/test/java/org/apache/commons/lang/exception/ExceptionUtilsTest.java Modified: commons/proper/lang/branches/LANG_2_X/src/test/java/org/apache/commons/lang/exception/ExceptionUtilsTest.java URL: http://svn.apache.org/viewvc/commons/proper/lang/branches/LANG_2_X/src/test/java/org/apache/commons/lang/exception/ExceptionUtilsTest.java?rev=904051&r1=904050&r2=904051&view=diff ============================================================================== --- commons/proper/lang/branches/LANG_2_X/src/test/java/org/apache/commons/lang/exception/ExceptionUtilsTest.java (original) +++ commons/proper/lang/branches/LANG_2_X/src/test/java/org/apache/commons/lang/exception/ExceptionUtilsTest.java Thu Jan 28 12:05:10 2010 @@ -545,7 +545,7 @@ assertEquals("IllegalArgumentException: Base", ExceptionUtils.getMessage(th)); th = new ExceptionWithCause("Wrapper", th); - assertEquals("ExceptionUtilsTestCase.ExceptionWithCause: Wrapper", ExceptionUtils.getMessage(th)); + assertEquals("ExceptionUtilsTest.ExceptionWithCause: Wrapper", ExceptionUtils.getMessage(th)); } public void test_getRootCauseMessage_Throwable() {