This is an automated email from the ASF dual-hosted git repository. sseifert pushed a commit to branch feature/SLING-12596-embedded-jar-test-win in repository https://gitbox.apache.org/repos/asf/sling-slingfeature-maven-plugin.git
commit 7f4310b3cb7469572d98b0badf2bf2977968fd9e Author: Stefan Seifert <[email protected]> AuthorDate: Tue Feb 17 08:18:20 2026 +0100 SLING-12596 Enabled JarDecompressorTest.testWithEmbeddedJar again on windows --- .../org/apache/sling/feature/maven/mojos/JarDecompressorTest.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/test/java/org/apache/sling/feature/maven/mojos/JarDecompressorTest.java b/src/test/java/org/apache/sling/feature/maven/mojos/JarDecompressorTest.java index ab7f5ec..c996838 100644 --- a/src/test/java/org/apache/sling/feature/maven/mojos/JarDecompressorTest.java +++ b/src/test/java/org/apache/sling/feature/maven/mojos/JarDecompressorTest.java @@ -26,7 +26,6 @@ import java.io.InputStream; import java.io.OutputStream; import java.nio.file.Files; import java.util.HashMap; -import java.util.Locale; import java.util.Map; import java.util.jar.JarEntry; import java.util.jar.JarInputStream; @@ -37,7 +36,6 @@ import org.junit.Test; import static org.junit.Assert.assertArrayEquals; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; -import static org.junit.Assume.assumeFalse; public class JarDecompressorTest { @Test @@ -76,9 +74,6 @@ public class JarDecompressorTest { @Test public void testJarWithEmbeddedJar() throws Exception { - // SLING-12596 - assumeFalse(System.getProperty("os.name").toLowerCase(Locale.ENGLISH).contains("win")); - File cj = new File( getClass().getResource("/repository/compressed-embedded.jar").getFile()); File uj = Files.createTempFile(getClass().getSimpleName(), "embedded-uncompressed.jar")
