Skip to content

Commit 47491d8

Browse files
committed
Shh
1 parent 2c7c047 commit 47491d8

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/test/java/org/jsoup/nodes/DocumentTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,6 @@ public class DocumentTest {
127127
Document doc = Jsoup.parse("<title>Hello</title> <p>One\n<p>Two\n");
128128
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>";
129129
String html = doc.html();
130-
System.out.println(html);
131130
assertEquals(expect, html);
132131
}
133132

0 commit comments

Comments
 (0)