Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
robb committed Oct 14, 2021
1 parent 1931ed5 commit 6f75fe7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/HTMLTests/HTMLTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ final class HTMLTests: XCTestCase {
"""
}

XCTAssertEqual(String(describing: node), "\n<textarea>Hello\nWorld</textarea>")
XCTAssertEqual(String(describing: node), "<textarea>Hello\nWorld</textarea>")
}

func testVisitorUppercase() {
Expand Down Expand Up @@ -207,7 +207,7 @@ final class HTMLTests: XCTestCase {
func visitText(text: String) -> [String] {
[ text ]
}

func visitRaw(raw: String) -> [String] {
[]
}
Expand Down

0 comments on commit 6f75fe7

Please sign in to comment.