From: digitalcraftsman Date: Thu, 4 Aug 2016 12:37:15 +0000 (+0200) Subject: tpl: Fix typo in FindRE test X-Git-Tag: v0.17~195 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=914e4d85;p=brevno-suite%2Fhugo tpl: Fix typo in FindRE test --- diff --git a/tpl/template_funcs_test.go b/tpl/template_funcs_test.go index 1a94adfc..14046eb3 100644 --- a/tpl/template_funcs_test.go +++ b/tpl/template_funcs_test.go @@ -1930,11 +1930,11 @@ func TestFindRE(t *testing.T) { expect []string ok bool }{ - {"[G|g]o", "Hugo is a static side generator written in Go.", 2, []string{"go", "Go"}, true}, - {"[G|g]o", "Hugo is a static side generator written in Go.", -1, []string{"go", "Go"}, true}, - {"[G|g]o", "Hugo is a static side generator written in Go.", 1, []string{"go"}, true}, - {"[G|g]o", "Hugo is a static side generator written in Go.", 0, []string(nil), true}, - {"[G|go", "Hugo is a static side generator written in Go.", 0, []string(nil), false}, + {"[G|g]o", "Hugo is a static site generator written in Go.", 2, []string{"go", "Go"}, true}, + {"[G|g]o", "Hugo is a static site generator written in Go.", -1, []string{"go", "Go"}, true}, + {"[G|g]o", "Hugo is a static site generator written in Go.", 1, []string{"go"}, true}, + {"[G|g]o", "Hugo is a static site generator written in Go.", 0, []string(nil), true}, + {"[G|go", "Hugo is a static site generator written in Go.", 0, []string(nil), false}, } { res, err := findRE(this.expr, this.content, this.limit)