Skip to content

Commit 2a22c5b

Browse files
committed
Remove redundant code
1 parent feed349 commit 2a22c5b

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

aztec/src/test/kotlin/org/wordpress/aztec/AztecParserTest.kt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1027,7 +1027,6 @@ class AztecParserTest : AndroidTestCase() {
10271027
fun parseHtmlToSpanToHtmlLineBreakBetweenHeadings_isEqual() {
10281028
val input = HTML_HEADING_ONE + "<br>" + HTML_HEADING_ONE
10291029
val span = SpannableStringBuilder(mParser.fromHtml(input, null, null, context))
1030-
mParser.syncVisualNewlinesOfBlockElements(span)
10311030
val output = mParser.toHtml(span)
10321031
Assert.assertEquals(input, output)
10331032
}
@@ -1148,7 +1147,6 @@ class AztecParserTest : AndroidTestCase() {
11481147
fun parseHtmlToSpanToHtmlBrAfterHeadings_isEqual() {
11491148
val input = "<h1>h1</h1><br><h2>h2</h2><br><h3>h3</h3><br>"
11501149
val span = SpannableStringBuilder(mParser.fromHtml(input, null, null, context))
1151-
mParser.syncVisualNewlinesOfBlockElements(span)
11521150
val output = mParser.toHtml(span)
11531151
Assert.assertEquals(input, output)
11541152
}

0 commit comments

Comments
 (0)