fix ignore

master
yihua.huang 2016-01-21 12:36:49 +08:00
parent 93764fa2c9
commit 81ce1ffc5f
1 changed files with 1 additions and 1 deletions

View File

@ -20,6 +20,7 @@ public class HtmlTest {
assertThat(selectable.regex("(a+b)").replace("aa(a)", "$1bb").toString()).isEqualTo("abbabbab");
}
@Ignore("not work in jsoup 1.8.x")
@Test
public void testDisableJsoupHtmlEntityEscape() throws Exception {
Html.DISABLE_HTML_ENTITY_ESCAPE = true;
@ -27,7 +28,6 @@ public class HtmlTest {
assertThat(html.regex("(aaaaaaa&b)").toString()).isEqualTo("aaaaaaa&b");
}
@Ignore("not work in jsoup 1.8.x")
@Test
public void testEnableJsoupHtmlEntityEscape() throws Exception {
Html.DISABLE_HTML_ENTITY_ESCAPE = false;