Return-Path: Delivered-To: apmail-commons-commits-archive@locus.apache.org Received: (qmail 87591 invoked from network); 11 Nov 2007 11:51:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 11 Nov 2007 11:51:59 -0000 Received: (qmail 85949 invoked by uid 500); 11 Nov 2007 11:51:46 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 85881 invoked by uid 500); 11 Nov 2007 11:51:46 -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 85870 invoked by uid 99); 11 Nov 2007 11:51:45 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 11 Nov 2007 03:51:45 -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; Sun, 11 Nov 2007 11:51:57 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5C00B1A9832; Sun, 11 Nov 2007 03:51:37 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r593871 - /commons/proper/logging/trunk/src/test/org/apache/commons/logging/noop/NoOpLogTestCase.java Date: Sun, 11 Nov 2007 11:51:37 -0000 To: commits@commons.apache.org From: skitching@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071111115137.5C00B1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: skitching Date: Sun Nov 11 03:51:36 2007 New Revision: 593871 URL: http://svn.apache.org/viewvc?rev=593871&view=rev Log: LOGGING-117. Clean up system props after unit test so that other unit tests do not fail. Modified: commons/proper/logging/trunk/src/test/org/apache/commons/logging/noop/NoOpLogTestCase.java Modified: commons/proper/logging/trunk/src/test/org/apache/commons/logging/noop/NoOpLogTestCase.java URL: http://svn.apache.org/viewvc/commons/proper/logging/trunk/src/test/org/apache/commons/logging/noop/NoOpLogTestCase.java?rev=593871&r1=593870&r2=593871&view=diff ============================================================================== --- commons/proper/logging/trunk/src/test/org/apache/commons/logging/noop/NoOpLogTestCase.java (original) +++ commons/proper/logging/trunk/src/test/org/apache/commons/logging/noop/NoOpLogTestCase.java Sun Nov 11 03:51:36 2007 @@ -50,6 +50,7 @@ */ public void tearDown() { LogFactory.releaseAll(); + System.getProperties().remove("org.apache.commons.logging.Log"); } /**