template: do not use error as stringer

R=r
CC=golang-dev
https://golang.org/cl/5305069
diff --git a/src/pkg/template/exec_test.go b/src/pkg/template/exec_test.go
index 6c19f11..2d2b402 100644
--- a/src/pkg/template/exec_test.go
+++ b/src/pkg/template/exec_test.go
@@ -98,7 +98,7 @@
 	Empty3:            []int{7, 8},
 	Empty4:            &U{"UinEmpty"},
 	NonEmptyInterface: new(T),
-	Str:               os.NewError("foozle"),
+	Str:               bytes.NewBuffer([]byte("foozle")),
 	PI:                newInt(23),
 	PSI:               newIntSlice(21, 22, 23),
 	Tmpl:              Must(New("x").Parse("test template")), // "x" is the value of .X