diff options
| author | Rob Pike <r@golang.org> | 2010-12-08 09:58:46 -0500 |
|---|---|---|
| committer | Rob Pike <r@golang.org> | 2010-12-08 09:58:46 -0500 |
| commit | 0313ea80abaa4eb1c7ce6b70be64ba493d9ff50d (patch) | |
| tree | 44508d6583f3e229a3525d7a98797eed8975d6b7 /src/pkg/path | |
| parent | c17394df31db2d9ab190828c8424279681d2b3b8 (diff) | |
| download | go-0313ea80abaa4eb1c7ce6b70be64ba493d9ff50d.tar.xz | |
path: fix printf glitch in test
R=rh, gri
CC=golang-dev
https://golang.org/cl/3514041
Diffstat (limited to 'src/pkg/path')
| -rw-r--r-- | src/pkg/path/path_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
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) |
