From 275aab5d863982d464aa5c3392cd99d03e436a80 Mon Sep 17 00:00:00 2001 From: Stephen Colebourne Date: Fri, 15 Oct 2004 23:10:33 +0000 Subject: [PATCH] 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 --- .../org/apache/commons/lang/NullArgumentExceptionTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/org/apache/commons/lang/NullArgumentExceptionTest.java b/src/test/org/apache/commons/lang/NullArgumentExceptionTest.java index 7c4f322ce..03dc87fc6 100644 --- a/src/test/org/apache/commons/lang/NullArgumentExceptionTest.java +++ b/src/test/org/apache/commons/lang/NullArgumentExceptionTest.java @@ -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() {