From: Rob Pike Date: Wed, 8 Dec 2010 14:58:46 +0000 (-0500) Subject: path: fix printf glitch in test X-Git-Tag: weekly.2010-12-15~100 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=0313ea80abaa4eb1c7ce6b70be64ba493d9ff50d;p=gostls13.git path: fix printf glitch in test R=rh, gri CC=golang-dev https://golang.org/cl/3514041 --- diff --git a/src/pkg/path/path_test.go b/src/pkg/path/path_test.go index 971f32eb7a..6b4be07a95 100644 --- a/src/pkg/path/path_test.go +++ b/src/pkg/path/path_test.go @@ -257,7 +257,7 @@ func TestWalk(t *testing.T) { errors := make(chan os.Error, 64) Walk(tree.name, v, errors) if err, ok := <-errors; ok { - t.Error("no error expected, found: s", err) + t.Errorf("no error expected, found: %s", err) } checkMarks(t)