transform: Don't use helpers.StringToReader

This commit is contained in:
Cameron Moore 2016-06-25 18:02:07 -05:00
parent e2aea65170
commit e3b162ccc6

View file

@ -15,9 +15,8 @@ package transform
import (
"bytes"
"strings"
"testing"
"github.com/spf13/hugo/helpers"
)
func TestHugoGeneratorInject(t *testing.T) {
@ -46,7 +45,7 @@ func TestHugoGeneratorInject(t *testing.T) {
{"</head>", "</head>"},
{"<head>", "<head>\n\tMETA"},
} {
in := helpers.StringToReader(this.in)
in := strings.NewReader(this.in)
out := new(bytes.Buffer)
tr := NewChain(HugoGeneratorInject)