Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'transform/chain_test.go')
-rw-r--r--transform/chain_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/transform/chain_test.go b/transform/chain_test.go
index 2477c3abf..d8ceb8bca 100644
--- a/transform/chain_test.go
+++ b/transform/chain_test.go
@@ -56,17 +56,17 @@ func TestChainZeroTransformers(t *testing.T) {
}
func TestChaingMultipleTransformers(t *testing.T) {
- f1 := func(rw ContentReWriter) {
+ f1 := func(rw contentRewriter) {
rw.Write(bytes.Replace(rw.Content(), []byte("f1"), []byte("f1r"), -1))
}
- f2 := func(rw ContentReWriter) {
+ f2 := func(rw contentRewriter) {
rw.Write(bytes.Replace(rw.Content(), []byte("f2"), []byte("f2r"), -1))
}
- f3 := func(rw ContentReWriter) {
+ f3 := func(rw contentRewriter) {
rw.Write(bytes.Replace(rw.Content(), []byte("f3"), []byte("f3r"), -1))
}
- f4 := func(rw ContentReWriter) {
+ f4 := func(rw contentRewriter) {
rw.Write(bytes.Replace(rw.Content(), []byte("f4"), []byte("f4r"), -1))
}