From 0313ea80abaa4eb1c7ce6b70be64ba493d9ff50d Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Wed, 8 Dec 2010 09:58:46 -0500 Subject: [PATCH] path: fix printf glitch in test R=rh, gri CC=golang-dev https://golang.org/cl/3514041 --- src/pkg/path/path_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.50.0