Skip to content

Commit d9544a4

Browse files
committed
Fixed an assert
1 parent f0ae81b commit d9544a4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test/java/org/jsoup/parser/HtmlParserTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1729,8 +1729,7 @@ private boolean didAddElements(String input) {
17291729
// https://github.com/jhy/jsoup/issues/1851
17301730
String html = "<body><div>One</html>Two</div></body>";
17311731
Document doc = Jsoup.parse(html);
1732-
//assertEquals("OneTwo", doc.expectFirst("body > div").text());
1733-
System.out.println(doc.html());
1732+
assertEquals("OneTwo", doc.expectFirst("body > div").text());
17341733
}
17351734

17361735
@Test void largeTextareaContents() {

0 commit comments

Comments
 (0)