Hello adg (cc: golang-dev@googlegroups.com), I'd like you to review this change.
LGTM On 20 September 2010 17:09, <r@golang.org> wrote: > Reviewers: adg, > > Message: > Hello adg (cc: golang-dev@googlegroups.com), > > I'd like you to review this change. > > > Description: > netchan: fix unimportant typo in test error call. > > Please review this at http://codereview.appspot.com/2211044/ > > Affected files: > M src/pkg/netchan/netchan_test.go > > > Index: src/pkg/netchan/netchan_test.go > =================================================================== > --- a/src/pkg/netchan/netchan_test.go > +++ b/src/pkg/netchan/netchan_test.go > @@ -170,7 +170,7 @@ > select { > case err = <-imp.Errors(): > if strings.Index(err.String(), "no such channel") < 0 { > - t.Errorf("wrong error for nonexistent channel:", > err) > + t.Error("wrong error for nonexistent channel:", err) > } > case <-timeout: > t.Error("import of nonexistent channel did not receive an > error") > > >
*** Submitted as http://code.google.com/p/go/source/detail?r=7883ba03b77b *** netchan: fix unimportant typo in test error call. R=adg CC=golang-dev http://codereview.appspot.com/2211044