mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -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 (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/spf13/hugo/helpers"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestHugoGeneratorInject(t *testing.T) {
|
func TestHugoGeneratorInject(t *testing.T) {
|
||||||
|
@ -46,7 +45,7 @@ func TestHugoGeneratorInject(t *testing.T) {
|
||||||
{"</head>", "</head>"},
|
{"</head>", "</head>"},
|
||||||
{"<head>", "<head>\n\tMETA"},
|
{"<head>", "<head>\n\tMETA"},
|
||||||
} {
|
} {
|
||||||
in := helpers.StringToReader(this.in)
|
in := strings.NewReader(this.in)
|
||||||
out := new(bytes.Buffer)
|
out := new(bytes.Buffer)
|
||||||
|
|
||||||
tr := NewChain(HugoGeneratorInject)
|
tr := NewChain(HugoGeneratorInject)
|
||||||
|
|
Loading…
Reference in a new issue