Un-export ContentReWriter

This commit is contained in:
bep 2015-03-18 17:33:12 +01:00
parent 98ee69bce2
commit e7099cfa26
5 changed files with 14 additions and 14 deletions

View file

@ -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))
}