Skip to content

Commit 6f75fe7

Browse files
committed
Fix tests
1 parent 1931ed5 commit 6f75fe7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/HTMLTests/HTMLTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ final class HTMLTests: XCTestCase {
167167
"""
168168
}
169169

170-
XCTAssertEqual(String(describing: node), "\n<textarea>Hello\nWorld</textarea>")
170+
XCTAssertEqual(String(describing: node), "<textarea>Hello\nWorld</textarea>")
171171
}
172172

173173
func testVisitorUppercase() {
@@ -207,7 +207,7 @@ final class HTMLTests: XCTestCase {
207207
func visitText(text: String) -> [String] {
208208
[ text ]
209209
}
210-
210+
211211
func visitRaw(raw: String) -> [String] {
212212
[]
213213
}

0 commit comments

Comments
 (0)