From commits-return-1088-apmail-commons-commits-archive=commons.apache.org@commons.apache.org Mon Dec 10 21:17:37 2007 Return-Path: Delivered-To: apmail-commons-commits-archive@locus.apache.org Received: (qmail 1798 invoked from network); 10 Dec 2007 21:17:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 10 Dec 2007 21:17:37 -0000 Received: (qmail 23793 invoked by uid 500); 10 Dec 2007 21:17:24 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 23729 invoked by uid 500); 10 Dec 2007 21:17:24 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 23720 invoked by uid 99); 10 Dec 2007 21:17:24 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Dec 2007 13:17:24 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Dec 2007 21:17:11 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 3685B1A9832; Mon, 10 Dec 2007 13:17:15 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r603053 - /commons/proper/jxpath/trunk/src/test/org/apache/commons/jxpath/BasicNodeSetTest.java Date: Mon, 10 Dec 2007 21:17:15 -0000 To: commits@commons.apache.org From: mbenson@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071210211715.3685B1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: mbenson Date: Mon Dec 10 13:17:14 2007 New Revision: 603053 URL: http://svn.apache.org/viewvc?rev=603053&view=rev Log: values Modified: commons/proper/jxpath/trunk/src/test/org/apache/commons/jxpath/BasicNodeSetTest.java Modified: commons/proper/jxpath/trunk/src/test/org/apache/commons/jxpath/BasicNodeSetTest.java URL: http://svn.apache.org/viewvc/commons/proper/jxpath/trunk/src/test/org/apache/commons/jxpath/BasicNodeSetTest.java?rev=603053&r1=603052&r2=603053&view=diff ============================================================================== --- commons/proper/jxpath/trunk/src/test/org/apache/commons/jxpath/BasicNodeSetTest.java (original) +++ commons/proper/jxpath/trunk/src/test/org/apache/commons/jxpath/BasicNodeSetTest.java Mon Dec 10 13:17:14 2007 @@ -89,6 +89,8 @@ addPointers("/integers"); assertEquals(nodeSet.getPointers().toString(), list("/integers[1]", "/integers[2]", "/integers[3]", "/integers[4]").toString()); + assertEquals(list(new Integer(1), new Integer(2), new Integer(3), new Integer(4)), + nodeSet.getValues()); } /**