@@ -508,31 +508,31 @@ final class DoccDocumentationTests: XCTestCase {
508
508
}
509
509
""" ,
510
510
" MyLibrary/MyLibrary.docc/Module.md " : """
511
- 1️⃣ # ``MyLibrary``
511
+ 4️⃣ # ``MyLibrary``
512
512
""" ,
513
513
" MyLibrary/MyLibrary.docc/foo().md " : """
514
- 1️⃣ # ``MyLibrary/foo()``
514
+ 5️⃣ # ``MyLibrary/foo()``
515
515
516
516
# Additional information for foo()
517
517
518
518
This will be appended to the end of foo()'s documentation page
519
519
""" ,
520
520
" MyLibrary/MyLibrary.docc/bar().md " : """
521
- 1️⃣ # ``MyLibrary/bar()``
521
+ 6️⃣ # ``MyLibrary/bar()``
522
522
523
523
# Additional information for bar()
524
524
525
525
This will be appended to the end of bar()'s documentation page
526
526
""" ,
527
527
" MyLibrary/MyLibrary.docc/Foo.bar.md " : """
528
- 1️⃣ # ``MyLibrary/Foo/bar``
528
+ 7️⃣ # ``MyLibrary/Foo/bar``
529
529
530
530
# Additional information for Foo.bar
531
531
532
532
This will be appended to the end of Foo.bar's documentation page
533
533
""" ,
534
534
" MyLibrary/MyLibrary.docc/SymbolNotFound.md " : """
535
- 1️⃣ # ``MyLibrary/thisIsNotAValidSymbol``
535
+ 8️⃣ # ``MyLibrary/thisIsNotAValidSymbol``
536
536
""" ,
537
537
] ,
538
538
enableBackgroundIndexing: true
@@ -549,33 +549,33 @@ final class DoccDocumentationTests: XCTestCase {
549
549
try await renderDocumentation (
550
550
fileName: " Module.md " ,
551
551
project: project,
552
- expectedResponses: [ " 1️⃣ " : . renderNode( kind: . symbol, path: " MyLibrary " ) ]
552
+ expectedResponses: [ " 4️⃣ " : . renderNode( kind: . symbol, path: " MyLibrary " ) ]
553
553
)
554
554
try await renderDocumentation (
555
555
fileName: " foo().md " ,
556
556
project: project,
557
557
expectedResponses: [
558
- " 1️⃣ " : . renderNode( kind: . symbol, path: " MyLibrary/foo() " , containing: " Documentation for foo() " )
558
+ " 5️⃣ " : . renderNode( kind: . symbol, path: " MyLibrary/foo() " , containing: " Documentation for foo() " )
559
559
]
560
560
)
561
561
try await renderDocumentation (
562
562
fileName: " bar().md " ,
563
563
project: project,
564
564
expectedResponses: [
565
- " 1️⃣ " : . renderNode( kind: . symbol, path: " MyLibrary/bar() " , containing: " Documentation for bar() " )
565
+ " 6️⃣ " : . renderNode( kind: . symbol, path: " MyLibrary/bar() " , containing: " Documentation for bar() " )
566
566
]
567
567
)
568
568
try await renderDocumentation (
569
569
fileName: " Foo.bar.md " ,
570
570
project: project,
571
571
expectedResponses: [
572
- " 1️⃣ " : . renderNode( kind: . symbol, path: " MyLibrary/Foo/bar " , containing: " Documentation for Foo.bar " )
572
+ " 7️⃣ " : . renderNode( kind: . symbol, path: " MyLibrary/Foo/bar " , containing: " Documentation for Foo.bar " )
573
573
]
574
574
)
575
575
try await renderDocumentation (
576
576
fileName: " SymbolNotFound.md " ,
577
577
project: project,
578
- expectedResponses: [ " 1️⃣ " : . error( . symbolNotFound( " MyLibrary/thisIsNotAValidSymbol " ) ) ]
578
+ expectedResponses: [ " 8️⃣ " : . error( . symbolNotFound( " MyLibrary/thisIsNotAValidSymbol " ) ) ]
579
579
)
580
580
}
581
581
@@ -603,7 +603,7 @@ final class DoccDocumentationTests: XCTestCase {
603
603
}
604
604
""" ,
605
605
" MyLibrary/MyLibrary.docc/Color.md " : """
606
- 1️⃣ # ``MyLibrary/Foo/Color-swift.enum``
606
+ 2️⃣ # ``MyLibrary/Foo/Color-swift.enum``
607
607
608
608
# Additional information for the Color enum
609
609
@@ -627,7 +627,7 @@ final class DoccDocumentationTests: XCTestCase {
627
627
fileName: " Color.md " ,
628
628
project: project,
629
629
expectedResponses: [
630
- " 1️⃣ " : . renderNode( kind: . symbol, path: " MyLibrary/Foo/Color " , containing: " The color of Foo " )
630
+ " 2️⃣ " : . renderNode( kind: . symbol, path: " MyLibrary/Foo/Color " , containing: " The color of Foo " )
631
631
]
632
632
)
633
633
}
0 commit comments