From: Bjørn Erik Pedersen Date: Sat, 15 Oct 2016 14:47:43 +0000 (+0200) Subject: Fix pygments check in test X-Git-Tag: v0.18~189 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=35dda2d9;p=brevno-suite%2Fhugo Fix pygments check in test --- diff --git a/hugolib/shortcode_test.go b/hugolib/shortcode_test.go index 2ac52510..54abdecd 100644 --- a/hugolib/shortcode_test.go +++ b/hugolib/shortcode_test.go @@ -599,7 +599,7 @@ tags: } else if strings.HasSuffix(test.contentPath, ".rst") && !helpers.HasRst() { fmt.Println("Skip Rst test case as no rst2html present.") continue - } else if strings.Contains(test.expected, "code class") && !helpers.HasPygments() { + } else if strings.Contains(test.expected, "code") && !helpers.HasPygments() { fmt.Println("Skip Pygments test case as no pygments present.") continue }