commit | 1959c3ac5bcc901115878babe74b819026de97be | [log] [tgz] |
---|---|---|
author | Rob Pike <r@golang.org> | Thu Sep 23 13:48:56 2010 +1000 |
committer | Rob Pike <r@golang.org> | Thu Sep 23 13:48:56 2010 +1000 |
tree | 02e23329756accd113aea80697c312104443b4cf | |
parent | c10865ce536684eec13ab7b1499ef74c07420cd2 [diff] [blame] |
tests: fix prints - delete unnecessary newlines - make sure formatted prints call the formatting routines R=adg CC=golang-dev https://golang.org/cl/2225046
diff --git a/src/pkg/io/multi_test.go b/src/pkg/io/multi_test.go index f5d2fad..3ecb7c7 100644 --- a/src/pkg/io/multi_test.go +++ b/src/pkg/io/multi_test.go
@@ -83,6 +83,6 @@ } if sink.String() != sourceString { - t.Error("expected %q; got %q", sourceString, sink.String()) + t.Errorf("expected %q; got %q", sourceString, sink.String()) } }