From 35dda2d9381a7f60b07b30767d19f326412e8e51 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Sat, 15 Oct 2016 16:47:43 +0200 Subject: [PATCH] Fix pygments check in test --- hugolib/shortcode_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } -- 2.30.2