You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ma...@apache.org on 2022/02/04 04:51:33 UTC

[logging-log4j2] branch master updated: Fix file name case sensitivity test failure

This is an automated email from the ASF dual-hosted git repository.

mattsicker pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/master by this push:
     new adcd5ff  Fix file name case sensitivity test failure
adcd5ff is described below

commit adcd5ff4f4ea612ca6df37635751d24caecb7cdc
Author: Matt Sicker <ma...@apache.org>
AuthorDate: Thu Feb 3 22:51:24 2022 -0600

    Fix file name case sensitivity test failure
    
    Turns out this is why the Linux build was failing.
    
    Signed-off-by: Matt Sicker <ma...@apache.org>
---
 .../log4j/core/config/plugins/util/PluginManagerPackagesTest.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/log4j-core-test/src/test/java/org/apache/logging/log4j/core/config/plugins/util/PluginManagerPackagesTest.java b/log4j-core-test/src/test/java/org/apache/logging/log4j/core/config/plugins/util/PluginManagerPackagesTest.java
index 99b110f..1cd15e2 100644
--- a/log4j-core-test/src/test/java/org/apache/logging/log4j/core/config/plugins/util/PluginManagerPackagesTest.java
+++ b/log4j-core-test/src/test/java/org/apache/logging/log4j/core/config/plugins/util/PluginManagerPackagesTest.java
@@ -44,7 +44,7 @@ import static org.assertj.core.api.Assertions.assertThat;
 import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
 
 public class PluginManagerPackagesTest {
-    private static final Path TEST_SOURCE = Path.of("target", "test-classes", "customPlugin", "FixedStringLayout.java");
+    private static final Path TEST_SOURCE = Path.of("target", "test-classes", "customplugin", "FixedStringLayout.java");
     private static LoggerContext ctx;
 
     @AfterAll