You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by eo...@apache.org on 2018/12/19 09:09:15 UTC

[maven-shade-plugin] 02/03: trying to make the test passing on windows

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

eolivelli pushed a commit to branch MSHADE-306
in repository https://gitbox.apache.org/repos/asf/maven-shade-plugin.git

commit 1c635f98b504022ad2bf9d8fd131f47fe4946fb5
Author: Romain Manni-Bucau <rm...@apache.org>
AuthorDate: Sun Dec 16 16:56:40 2018 +0100

    trying to make the test passing on windows
---
 src/test/java/org/apache/maven/plugins/shade/DefaultShaderTest.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/maven/plugins/shade/DefaultShaderTest.java b/src/test/java/org/apache/maven/plugins/shade/DefaultShaderTest.java
index cd56ca6..cbc21ba 100644
--- a/src/test/java/org/apache/maven/plugins/shade/DefaultShaderTest.java
+++ b/src/test/java/org/apache/maven/plugins/shade/DefaultShaderTest.java
@@ -120,7 +120,8 @@ public class DefaultShaderTest
 
         final String failureDebugMessage = debugMessages.toString();
         assertTrue(failureDebugMessage, debugMessages.contains(
-                "We have a duplicate META-INF/MANIFEST.MF in src/test/jars/plexus-utils-1.4.1.jar"));
+                "We have a duplicate META-INF/MANIFEST.MF in src/test/jars/plexus-utils-1.4.1.jar"
+                        .replace('/', File.separatorChar)));
     }
 
     public void testShaderWithDefaultShadedPattern()