tpl: Fix typo in FindRE test
authordigitalcraftsman <digitalcraftsman@protonmail.com>
Thu, 4 Aug 2016 12:37:15 +0000 (14:37 +0200)
committerdigitalcraftsman <digitalcraftsman@protonmail.com>
Thu, 4 Aug 2016 12:37:15 +0000 (14:37 +0200)
tpl/template_funcs_test.go

index 1a94adfc3d01097096192e6b9a0070529f998d1c..14046eb3dbf87ebea305287359912f6929ed0684 100644 (file)
@@ -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)