File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -31,17 +31,20 @@ type ``cross-link makes it into html`` () =
3131
3232type ``error when using wrong scheme`` () =
3333
34- static let markdown = Setup.Markdown """
35- [APM Server binary](docs-x:/solutions/observability/apps/apm-server-binary.md)
36- """
37-
3834 [<Fact>]
3935 let ``error on bad scheme`` () =
36+ let markdown = Setup.Markdown """
37+ [APM Server binary](docs-x:/solutions/observability/apps/apm-server-binary.md)
38+ """
4039 markdown
4140 |> hasError " 'docs-x' was not found in the cross link index"
4241
4342 [<Fact>]
44- let ``has no warning`` () = markdown |> hasNoWarnings
43+ let ``has no warning`` () =
44+ let markdown = Setup.Markdown """
45+ [APM Server binary](docs-x:/solutions/observability/apps/apm-server-binary.md)
46+ """
47+ markdown |> hasNoWarnings
4548
4649type ``error when bad anchor is used`` () =
4750
@@ -143,4 +146,4 @@ type ``link to repository that does not resolve yet using double slashes`` () =
143146 let ``error when not found in links.json`` () = markdown |> hasError( " 'elasticsearch' was not found in the cross link index" )
144147
145148 [<Fact>]
146- let ``has no warning`` () = markdown |> hasNoWarnings
149+ let ``has no warning`` () = markdown |> hasNoWarnings
You can’t perform that action at this time.
0 commit comments