Repository: logging-log4j2 Updated Branches: refs/heads/master b6ff099cf -> 91b599e7b
Make it easier to copy a file name to open in an editor. Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/91b599e7 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/91b599e7 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/91b599e7 Branch: refs/heads/master Commit: 91b599e7bf7c7fbe18f076e63577e1cff251d7fb Parents: b6ff099 Author: Gary Gregory <[email protected]> Authored: Fri Sep 23 17:28:17 2016 -0700 Committer: Gary Gregory <[email protected]> Committed: Fri Sep 23 17:28:17 2016 -0700 ---------------------------------------------------------------------- .../log4j/config/AbstractLog4j1ConfigurationConverterTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/91b599e7/log4j-1.2-api/src/test/java/org/apache/log4j/config/AbstractLog4j1ConfigurationConverterTest.java ---------------------------------------------------------------------- diff --git a/log4j-1.2-api/src/test/java/org/apache/log4j/config/AbstractLog4j1ConfigurationConverterTest.java b/log4j-1.2-api/src/test/java/org/apache/log4j/config/AbstractLog4j1ConfigurationConverterTest.java index 4afcf78..f9209e2 100644 --- a/log4j-1.2-api/src/test/java/org/apache/log4j/config/AbstractLog4j1ConfigurationConverterTest.java +++ b/log4j-1.2-api/src/test/java/org/apache/log4j/config/AbstractLog4j1ConfigurationConverterTest.java @@ -39,7 +39,7 @@ public abstract class AbstractLog4j1ConfigurationConverterTest { Files.walkFileTree(Paths.get(root), new SimpleFileVisitor<Path>() { @Override public FileVisitResult visitFile(final Path file, final BasicFileAttributes attrs) throws IOException { - paths.add(file); + paths.add(file.toAbsolutePath()); return FileVisitResult.CONTINUE; } });
