Return-Path: Delivered-To: apmail-cocoon-cvs-archive@www.apache.org Received: (qmail 64188 invoked from network); 26 Dec 2007 19:24:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 26 Dec 2007 19:24:35 -0000 Received: (qmail 23330 invoked by uid 500); 26 Dec 2007 19:24:24 -0000 Delivered-To: apmail-cocoon-cvs-archive@cocoon.apache.org Received: (qmail 23274 invoked by uid 500); 26 Dec 2007 19:24:24 -0000 Mailing-List: contact cvs-help@cocoon.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@cocoon.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@cocoon.apache.org Received: (qmail 23263 invoked by uid 99); 26 Dec 2007 19:24:23 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Dec 2007 11:24:23 -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; Wed, 26 Dec 2007 19:24:20 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id EDB301A9832; Wed, 26 Dec 2007 11:24:11 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r606938 - /cocoon/trunk/blocks/cocoon-forms/cocoon-forms-impl/src/test/java/org/apache/cocoon/forms/datatype/FlowJXPathSelectionListTestCase.java Date: Wed, 26 Dec 2007 19:24:11 -0000 To: cvs@cocoon.apache.org From: gkossakowski@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071226192411.EDB301A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: gkossakowski Date: Wed Dec 26 11:24:10 2007 New Revision: 606938 URL: http://svn.apache.org/viewvc?rev=606938&view=rev Log: Added references to the issue (COCOON-2155) used for tracking problem with parsing of XML when test-cases are executed. Modified: cocoon/trunk/blocks/cocoon-forms/cocoon-forms-impl/src/test/java/org/apache/cocoon/forms/datatype/FlowJXPathSelectionListTestCase.java Modified: cocoon/trunk/blocks/cocoon-forms/cocoon-forms-impl/src/test/java/org/apache/cocoon/forms/datatype/FlowJXPathSelectionListTestCase.java URL: http://svn.apache.org/viewvc/cocoon/trunk/blocks/cocoon-forms/cocoon-forms-impl/src/test/java/org/apache/cocoon/forms/datatype/FlowJXPathSelectionListTestCase.java?rev=606938&r1=606937&r2=606938&view=diff ============================================================================== --- cocoon/trunk/blocks/cocoon-forms/cocoon-forms-impl/src/test/java/org/apache/cocoon/forms/datatype/FlowJXPathSelectionListTestCase.java (original) +++ cocoon/trunk/blocks/cocoon-forms/cocoon-forms-impl/src/test/java/org/apache/cocoon/forms/datatype/FlowJXPathSelectionListTestCase.java Wed Dec 26 11:24:10 2007 @@ -68,7 +68,7 @@ Source expectedSource = new ResourceSource("resource://org/apache/cocoon/forms/datatype/FlowJXPathSelectionListTestCase.dest.xml"); Document expected = this.parser.parse(expectedSource.getInputStream()); Document destDocument = dest.getDocument(); - // FIXME: Why is the namespace declaration available as attribute on the expected document? + // FIXME: Why is the namespace declaration available as attribute on the expected document? (see COCOON-2155) expected.getDocumentElement().removeAttribute("xmlns:" + FormsConstants.INSTANCE_PREFIX); assertEqual("Test if generated list matches expected", expected, destDocument); } @@ -95,7 +95,7 @@ Source expectedSource = new ResourceSource("resource://org/apache/cocoon/forms/datatype/FlowJXPathSelectionListTestCaseWithNull.dest.xml"); Document expected = this.parser.parse(expectedSource.getInputStream()); Document destDocument = dest.getDocument(); - // FIXME: Why is the namespace declaration available as attribute on the expected document? + // FIXME: Why is the namespace declaration available as attribute on the expected document? (see COCOON-2155) expected.getDocumentElement().removeAttribute("xmlns:" + FormsConstants.INSTANCE_PREFIX); assertEqual("Test if generated list matches expected", expected, destDocument); }