You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gg...@apache.org on 2016/09/13 19:30:24 UTC

[3/4] logging-log4j2 git commit: Clean up resources.

Clean up resources.

Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/c4db4df5
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/c4db4df5
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/c4db4df5

Branch: refs/heads/master
Commit: c4db4df592339610b0e1b6238bb35f2e61471472
Parents: f4b75c8
Author: Gary Gregory <gg...@apache.org>
Authored: Tue Sep 13 12:21:14 2016 -0700
Committer: Gary Gregory <gg...@apache.org>
Committed: Tue Sep 13 12:21:14 2016 -0700

----------------------------------------------------------------------
 .../logging/log4j/core/config/plugins/util/ResolverUtilTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/c4db4df5/log4j-core/src/test/java/org/apache/logging/log4j/core/config/plugins/util/ResolverUtilTest.java
----------------------------------------------------------------------
diff --git a/log4j-core/src/test/java/org/apache/logging/log4j/core/config/plugins/util/ResolverUtilTest.java b/log4j-core/src/test/java/org/apache/logging/log4j/core/config/plugins/util/ResolverUtilTest.java
index 392da7b..1c6371b 100644
--- a/log4j-core/src/test/java/org/apache/logging/log4j/core/config/plugins/util/ResolverUtilTest.java
+++ b/log4j-core/src/test/java/org/apache/logging/log4j/core/config/plugins/util/ResolverUtilTest.java
@@ -187,7 +187,7 @@ public class ResolverUtilTest {
 
     static File compile(final String suffix) throws IOException {
         final File orig = new File("target/test-classes/customplugin/FixedStringLayout.java.source");
-        final File workDir = new File("target/resolverutil" + suffix);
+        final File workDir = new File(WORK_DIR, "resolverutil" + suffix);
         final File f = new File(workDir, "customplugin" + suffix + "/FixedString" + suffix + "Layout.java");
         final File parent = f.getParentFile();
         if (!parent.exists()) {