summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Chang <vichang@google.com>2023-11-27 09:16:00 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2023-11-27 09:16:00 +0000
commit5818b1254d791ccbc5cabb04ac1ea6e32616e62c (patch)
tree587985da24fcbfe38fc1a414b2242af7f4783a9d
parent963bf1360390602e405c524763cfbf219ddc8096 (diff)
parent33f1132d094eaa333f99b17b7df6ae550622dfce (diff)
downloadapache-harmony-android13-tests-dev.tar.gz
Merge "Reset LogManager after each test method in LogManagerTest" into android13-tests-devandroid13-tests-dev
-rw-r--r--logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/LogManagerTest.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/LogManagerTest.java b/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/LogManagerTest.java
index 082a36d..e96ace1 100644
--- a/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/LogManagerTest.java
+++ b/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/LogManagerTest.java
@@ -101,6 +101,7 @@ public class LogManagerTest extends TestCase {
*/
protected void tearDown() throws Exception {
super.tearDown();
+ manager.reset();
handler = null;
}