Skip to content

Commit 1b01a55

Browse files
committed
#1132 disable on windows
1 parent 9d4bcb3 commit 1b01a55

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/test/java/org/takes/tk/TkFilesTest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@
3030
import org.hamcrest.MatcherAssert;
3131
import org.junit.jupiter.api.Assertions;
3232
import org.junit.jupiter.api.Test;
33+
import org.junit.jupiter.api.condition.DisabledOnOs;
34+
import org.junit.jupiter.api.condition.OS;
3335
import org.junit.jupiter.api.io.TempDir;
3436
import org.llorllale.cactoos.matchers.StartsWith;
3537
import org.takes.HttpException;
@@ -48,6 +50,7 @@ final class TkFilesTest {
4850
* @throws Exception If some problem inside
4951
*/
5052
@Test
53+
@DisabledOnOs(OS.WINDOWS)
5154
void dispatchesByFileName(@TempDir final Path temp) throws Exception {
5255
final File file = temp.resolve("a.txt").toFile();
5356
FileUtils.write(

0 commit comments

Comments
 (0)