diff options
author | Rob Pike <r@golang.org> | 2009-01-15 13:48:11 -0800 |
---|---|---|
committer | Rob Pike <r@golang.org> | 2009-01-15 13:48:11 -0800 |
commit | 8024c6e3aec249fcc40b62e8879d30207e879be9 (patch) | |
tree | a72b91ed6b55c7c4635039376af421a98695ad60 /src/lib/bufio_test.go | |
parent | d6b313278a61f109ab8b71dd8c77a40ff557b819 (diff) | |
download | golang-8024c6e3aec249fcc40b62e8879d30207e879be9.tar.gz |
printf->Printf etc.
the raw fmt routines will be another, smaller but subtler pass.
R=rsc
DELTA=157 (0 added, 0 deleted, 157 changed)
OCL=22851
CL=22851
Diffstat (limited to 'src/lib/bufio_test.go')
-rw-r--r-- | src/lib/bufio_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/bufio_test.go b/src/lib/bufio_test.go index 272b8b65c..b728027fb 100644 --- a/src/lib/bufio_test.go +++ b/src/lib/bufio_test.go @@ -309,7 +309,7 @@ export func TestBufWrite(t *testing.T) { write := writers[k].fn(); buf, e := NewBufWriteSize(write, bs); - context := fmt.sprintf("write=%s nwrite=%d bufsize=%d", writers[k].name, nwrite, bs); + context := fmt.Sprintf("write=%s nwrite=%d bufsize=%d", writers[k].name, nwrite, bs); if e != nil { t.Errorf("%s: NewBufWriteSize %d: %v", context, bs, e); continue; |