Return-Path: Delivered-To: apmail-jackrabbit-dev-archive@www.apache.org Received: (qmail 70001 invoked from network); 2 Aug 2006 12:22:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 2 Aug 2006 12:22:49 -0000 Received: (qmail 11356 invoked by uid 500); 2 Aug 2006 12:22:48 -0000 Delivered-To: apmail-jackrabbit-dev-archive@jackrabbit.apache.org Received: (qmail 11329 invoked by uid 500); 2 Aug 2006 12:22:48 -0000 Mailing-List: contact dev-help@jackrabbit.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@jackrabbit.apache.org Delivered-To: mailing list dev@jackrabbit.apache.org Received: (qmail 11320 invoked by uid 99); 2 Aug 2006 12:22:48 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Aug 2006 05:22:48 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [209.237.227.198] (HELO brutus.apache.org) (209.237.227.198) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Aug 2006 05:22:47 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id BAAC3410021 for ; Wed, 2 Aug 2006 12:20:14 +0000 (GMT) Message-ID: <22429754.1154521214762.JavaMail.jira@brutus> Date: Wed, 2 Aug 2006 05:20:14 -0700 (PDT) From: "Marcel Reutegger (JIRA)" To: dev@jackrabbit.apache.org Subject: [jira] Resolved: (JCR-499) TCK: NamespaceRegistryTest#testRegisterNamespace doesn't remove node in new namespace In-Reply-To: <15885967.1153955474001.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/JCR-499?page=all ] Marcel Reutegger resolved JCR-499. ---------------------------------- Fix Version/s: 1.1 Resolution: Fixed Fixed as suggested in revision: 427962 Thank you for reporting this issue. > TCK: NamespaceRegistryTest#testRegisterNamespace doesn't remove node in new namespace > ------------------------------------------------------------------------------------- > > Key: JCR-499 > URL: http://issues.apache.org/jira/browse/JCR-499 > Project: Jackrabbit > Issue Type: Bug > Components: test > Reporter: David Pitfield > Fix For: 1.1 > > > The test creates a node in the new namespace, but doesn't remove it. This prevents tearDown from unregistering the namespace. > Proposal: the test should remove the new node before returning. > --- NamespaceRegistryTest.java (revision 422074) > +++ NamespaceRegistryTest.java (working copy) > @@ -138,6 +138,10 @@ > > testRootNode.addNode(namespacePrefix + ":root"); > testRootNode.save(); > + > + // Need to remove it here, otherwise teardown can't unregister the NS. > + testRootNode.getNode(namespacePrefix + ":root").remove(); > + testRootNode.save(); > } -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira