mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
transform: Don't use helpers.StringToReader
This commit is contained in:
parent
e2aea65170
commit
e3b162ccc6
1 changed files with 2 additions and 3 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue