From 576e85c122b7435ac07152e5409e7585ff00eba5 Mon Sep 17 00:00:00 2001 From: Simon Kitching Date: Sun, 11 Nov 2007 11:51:36 +0000 Subject: [PATCH] LOGGING-117. Clean up system props after unit test so that other unit tests do not fail. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/logging/trunk@593871 13f79535-47bb-0310-9956-ffa450edef68 --- src/test/org/apache/commons/logging/noop/NoOpLogTestCase.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/org/apache/commons/logging/noop/NoOpLogTestCase.java b/src/test/org/apache/commons/logging/noop/NoOpLogTestCase.java index 131e93d..1885526 100644 --- a/src/test/org/apache/commons/logging/noop/NoOpLogTestCase.java +++ b/src/test/org/apache/commons/logging/noop/NoOpLogTestCase.java @@ -50,6 +50,7 @@ public class NoOpLogTestCase extends AbstractLogTest */ public void tearDown() { LogFactory.releaseAll(); + System.getProperties().remove("org.apache.commons.logging.Log"); } /**