Fix test for changed exception message

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137976 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2004-10-15 23:10:33 +00:00
parent 5417810157
commit 275aab5d86
1 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@
*
* @author Matthew Hawthorne
* @author Stephen Colebourne
* @version $Id: NullArgumentExceptionTest.java,v 1.4 2004/02/18 23:06:19 ggregory Exp $
* @version $Id: NullArgumentExceptionTest.java,v 1.5 2004/10/15 23:10:33 scolebourne Exp $
* @see NullArgumentException
*/
public class NullArgumentExceptionTest extends TestCase {
@ -52,7 +52,7 @@ public void testConstructor_nullInput() {
public void testGetMessage_nullConstructorInput() {
final Throwable t = new NullArgumentException(null);
assertEquals("null must not be null.", t.getMessage());
assertEquals("Argument must not be null.", t.getMessage());
}
public void testGetMessage_validConstructorInput() {