summaryrefslogtreecommitdiffstats
path: root/transform/chain_test.go
diff options
context:
space:
mode:
authorbep <bjorn.erik.pedersen@gmail.com>2015-03-18 17:33:12 +0100
committerbep <bjorn.erik.pedersen@gmail.com>2015-03-18 17:33:12 +0100
commite7099cfa26d31cc7544e6db37899678ef8bd65ff (patch)
tree3a0152bfbd63c84b23fc578063f9c02b0e9dd0f0 /transform/chain_test.go
parent98ee69bce207a4c2a7c2ffca2b3e7c0ccdd6e8c9 (diff)
Un-export ContentReWriter
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))
}