Skip to content

Commit

Permalink
Skip UTF8 test on Windows
Browse files Browse the repository at this point in the history
 - fixes #1414
  • Loading branch information
iBotPeaches committed Jan 19, 2017
1 parent dd4a207 commit 1b55105
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,12 @@
import java.util.Set;
import java.util.logging.Logger;

import brut.util.OSDetection;
import org.custommonkey.xmlunit.*;
import org.junit.*;

import static org.junit.Assert.*;
import static org.junit.Assume.*;

import org.xml.sax.SAXException;

Expand Down Expand Up @@ -379,6 +382,7 @@ public void fileAssetTest() throws BrutException, IOException {

@Test
public void unicodeAssetTest() throws BrutException, IOException {
assumeTrue(! OSDetection.isWindows());
compareAssetsFolder("unicode-txt");
}

Expand Down

0 comments on commit 1b55105

Please sign in to comment.