Skip to content

Commit

Permalink
Issue #5129 - disabling ResourceTest.testGlobPath on WINDOWS for stab…
Browse files Browse the repository at this point in the history
…ility
  • Loading branch information
joakime committed Aug 11, 2020
1 parent 150dc22 commit 4a19ef4
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -33,6 +33,8 @@
import org.hamcrest.Matchers;
import org.junit.jupiter.api.Assumptions;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledOnOs;
import org.junit.jupiter.api.condition.OS;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.Arguments;
import org.junit.jupiter.params.provider.MethodSource;
Expand Down Expand Up @@ -285,6 +287,7 @@ public void testResourceContent(Scenario data)
}

@Test
@DisabledOnOs(OS.WINDOWS) // this uses forbidden characters on some Windows Environments
public void testGlobPath() throws IOException
{
Path testDir = MavenTestingUtils.getTargetTestingPath("testGlobPath");
Expand Down

0 comments on commit 4a19ef4

Please sign in to comment.