This commit is contained in:
Niklas Fasching 2019-01-02 21:21:22 +01:00
parent 56ecb2d401
commit 7110853eb5

View file

@ -19,7 +19,7 @@ func Fuzz(input []byte) int {
if err != nil {
panic(err)
}
htmlOutputB, err := conf.Parse(strings.NewReader(orgOutput)).Write(NewHTMLWriter())
htmlOutputB, err := conf.Parse(strings.NewReader(orgOutput), "").Write(NewHTMLWriter())
if htmlOutputA != htmlOutputB {
panic("rendered org results in different html than original input")
}