Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@www.apache.org Received: (qmail 5079 invoked from network); 15 Oct 2004 23:10:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 15 Oct 2004 23:10:41 -0000 Received: (qmail 76962 invoked by uid 500); 15 Oct 2004 23:10:38 -0000 Delivered-To: apmail-jakarta-commons-dev-archive@jakarta.apache.org Received: (qmail 76891 invoked by uid 500); 15 Oct 2004 23:10:37 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 76839 invoked by uid 500); 15 Oct 2004 23:10:35 -0000 Received: (qmail 76785 invoked by uid 99); 15 Oct 2004 23:10:34 -0000 X-ASF-Spam-Status: No, hits=-10.0 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Fri, 15 Oct 2004 16:10:34 -0700 Received: (qmail 4694 invoked by uid 1529); 15 Oct 2004 23:10:33 -0000 Date: 15 Oct 2004 23:10:33 -0000 Message-ID: <20041015231033.4693.qmail@minotaur.apache.org> From: scolebourne@apache.org To: jakarta-commons-cvs@apache.org Subject: cvs commit: jakarta-commons/lang/src/test/org/apache/commons/lang NullArgumentExceptionTest.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N scolebourne 2004/10/15 16:10:33 Modified: lang/src/test/org/apache/commons/lang NullArgumentExceptionTest.java Log: Fix test for changed exception message Revision Changes Path 1.5 +2 -2 jakarta-commons/lang/src/test/org/apache/commons/lang/NullArgumentExceptionTest.java Index: NullArgumentExceptionTest.java =================================================================== RCS file: /home/cvs/jakarta-commons/lang/src/test/org/apache/commons/lang/NullArgumentExceptionTest.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- NullArgumentExceptionTest.java 18 Feb 2004 23:06:19 -0000 1.4 +++ NullArgumentExceptionTest.java 15 Oct 2004 23:10:33 -0000 1.5 @@ -52,7 +52,7 @@ 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() { --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org