Skip to content

Commit b065aab

Browse files
committed
Update CSS tests
1 parent 9c552f0 commit b065aab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/src/androidTest/kotlin/org/wordpress/aztec/demo/tests/CssUnderlineFormattingTests.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class CssUnderlineFormattingTests : BaseTest() {
2727
fun testSimpleCssUnderlineFormatting() {
2828
val text1 = "some"
2929
val text2 = "text"
30-
val html = "$text1<span style=\"text-decoration: underline;\">$text2</span>"
30+
val html = "$text1<span style=\"text-decoration:underline;\">$text2</span>"
3131

3232
EditorPage()
3333
.insertText(text1)
@@ -56,7 +56,7 @@ class CssUnderlineFormattingTests : BaseTest() {
5656
val text1 = "some"
5757
val text2 = "text"
5858
val html = "$text1<u>$text2</u>"
59-
val expectedHtml = "$text1<span style=\"text-decoration: underline;\">$text2</span>"
59+
val expectedHtml = "$text1<span style=\"text-decoration:underline;\">$text2</span>"
6060

6161
EditorPage()
6262
.toggleHtml()
@@ -78,8 +78,8 @@ class CssUnderlineFormattingTests : BaseTest() {
7878
val text1 = "some"
7979
val text2 = "text"
8080
val html = "$text1<u>$text2</u>"
81-
val expectedHtml = "$text1<span style=\"text-decoration: underline;\">te</span>\n\n" +
82-
"<span style=\"text-decoration: underline;\">xt</span>"
81+
val expectedHtml = "$text1<span style=\"text-decoration:underline;\">te</span>\n\n" +
82+
"<span style=\"text-decoration:underline;\">xt</span>"
8383

8484
EditorPage()
8585
.toggleHtml()

0 commit comments

Comments
 (0)