We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c7c047 commit 47491d8Copy full SHA for 47491d8
src/test/java/org/jsoup/nodes/DocumentTest.java
@@ -127,7 +127,6 @@ public class DocumentTest {
127
Document doc = Jsoup.parse("<title>Hello</title> <p>One\n<p>Two\n");
128
String expect = "<html>\n <head>\n <title>Hello</title>\n </head>\n <body>\n <p>One</p>\n <p>Two</p>\n </body>\n</html>";
129
String html = doc.html();
130
- System.out.println(html);
131
assertEquals(expect, html);
132
}
133
0 commit comments