slawekjaranowski commented on code in PR #227: URL: https://github.com/apache/maven-jlink-plugin/pull/227#discussion_r1868050356
########## src/test/java/org/apache/maven/plugins/jlink/JLinkMojoTest.java: ########## @@ -45,12 +51,8 @@ void double_quote_every_argument() throws Exception { } @Test - void single_quotes_shell_command() throws Exception { - // given - JLinkMojo mojo = new JLinkMojo(); - Field stripDebug = mojo.getClass().getDeclaredField("stripDebug"); - stripDebug.setAccessible(true); - stripDebug.set(mojo, Boolean.TRUE); + void single_quotes_shell_command_unix() throws Exception { + Assumptions.assumeFalse(System.getProperty("os.name").startsWith("Windows")); Review Comment: There is an annotation `@DisabledOnOs` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org