Commit 0313ea80 authored by Rob Pike's avatar Rob Pike

path: fix printf glitch in test

R=rh, gri
CC=golang-dev
https://golang.org/cl/3514041
parent c17394df
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment