File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -72,10 +72,11 @@ final class MarkupTests: XCTestCase {
7272 }
7373
7474 let text = document. child ( through: [
75- 0 , // Paragraph
76- 0 , // Strong
77- 0 , // Emphasis
78- 0 ] ) as! Text
75+ 0 , // Paragraph
76+ 0 , // Strong
77+ 0 , // Emphasis
78+ 0 ,
79+ ] ) as! Text
7980 var newText = text
8081 newText. string = " New "
8182
@@ -272,7 +273,7 @@ final class MarkupTests: XCTestCase {
272273 ( 0 , Paragraph . self) ,
273274 ( 1 , Link . self) ,
274275 ( 0 , Emphasis . self) ,
275- ( 0 , Text . self)
276+ ( 0 , Text . self) ,
276277 ] ) !. debugDescription ( ) ,
277278 document. child ( through:
278279 0 , // Paragraph
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ class ImageTests: XCTestCase {
3636 let document = Document ( parsing: source)
3737 let image = document. child ( through: [
3838 ( 0 , Paragraph . self) ,
39- ( 0 , Image . self)
39+ ( 0 , Image . self) ,
4040 ] ) as! Image
4141 XCTAssertEqual ( title, image. title)
4242 }
You can’t perform that action at this time.
0 commit comments