markup/goldmark: Adjust test for Windows
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 26 Feb 2022 17:57:21 +0000 (18:57 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 26 Feb 2022 20:54:36 +0000 (21:54 +0100)
markup/goldmark/codeblocks/integration_test.go

index c33ea31e3846b405d044063d8c79cd2733641e3b..001deb9f8dd387826378b5092bcb3bb1f715fb62 100644 (file)
@@ -14,6 +14,7 @@
 package codeblocks_test
 
 import (
+       "path/filepath"
        "strings"
        "testing"
 
@@ -173,7 +174,7 @@ Position: {{ .Position | safeHTML }}
                },
        ).Build()
 
-       b.AssertFileContent("public/p1/index.html", "Position: \"content/p1.md:7:1\"")
+       b.AssertFileContent("public/p1/index.html", filepath.FromSlash("Position: \"content/p1.md:7:1\""))
 }
 
 // Issue 9571