transform: Don't use helpers.StringToReader
authorCameron Moore <moorereason@gmail.com>
Sat, 25 Jun 2016 23:02:07 +0000 (18:02 -0500)
committerCameron Moore <moorereason@gmail.com>
Sat, 25 Jun 2016 23:02:07 +0000 (18:02 -0500)
transform/hugogeneratorinject_test.go

index 3f8b26de7018fa637c8139fa8e1310cf607b9cb6..d37fea24e090d2abec4849827bd1b39766fd650c 100644 (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)