Skip to content

Commit

Permalink
[fix] Test should not have extra indentation. It already has non brea…
Browse files Browse the repository at this point in the history
…king space added so 2 would be wrong.
  • Loading branch information
hazendaz committed Nov 25, 2021
1 parent 3ddaf99 commit 0fba258
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/org/jsoup/nodes/ElementTest.java
Expand Up @@ -496,7 +496,7 @@ public void testPrettyAndOutlineWithEnDashBody() {
Document document = Jsoup.parse(html);
document.outputSettings().outline(true);

assertEquals("<div>\n <span>1:15</span>\n\n <span>2:15</span>\n &nbsp;p.m.\n</div>", document.body().html());
assertEquals("<div>\n <span>1:15</span>\n\n <span>2:15</span>\n&nbsp;p.m.\n</div>", document.body().html());
}

@Test
Expand Down

0 comments on commit 0fba258

Please sign in to comment.