Skip UTF8 test on Windows

- fixes #1414
This commit is contained in:
Connor Tumbleson 2017-01-19 06:12:41 -05:00
parent dd4a207ec4
commit 1b55105042
No known key found for this signature in database
GPG Key ID: C3CC0A201EC7DA75

View File

@ -27,9 +27,12 @@ import java.util.Map;
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;
@ -379,6 +382,7 @@ public class BuildAndDecodeTest {
@Test
public void unicodeAssetTest() throws BrutException, IOException {
assumeTrue(! OSDetection.isWindows());
compareAssetsFolder("unicode-txt");
}