Skip to content

Commit bf8eef5

Browse files
committed
Fix formatted output
1 parent bddcd1a commit bf8eef5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/SwiftDocCTests/Semantics/DoxygenTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class DoxygenTests: XCTestCase {
6060
let symbol = try XCTUnwrap(node.semantic as? Symbol)
6161

6262
XCTAssertEqual(symbol.abstract?.format(), "This is an abstract.")
63-
XCTAssertEqual(symbol.discussion?.content.map { $0.format() }, ["This is a discussion.", "This is a note."])
63+
XCTAssertEqual(symbol.discussion?.content.map { $0.format() }, [#"\discussion This is a discussion."#, #"\note This is a note."#])
6464

6565
// Verify the expected content in the render model
6666
var translator = RenderNodeTranslator(context: context, bundle: bundle, identifier: node.reference, source: nil)

0 commit comments

Comments
 (0)