Commit 54045e6b authored by Rob Pike's avatar Rob Pike

pkg/http: fix a couple of error messages

R=golang-dev, dsymonds
CC=golang-dev
https://golang.org/cl/4805048
parent 38e51282
......@@ -163,10 +163,10 @@ func TestDirJoin(t *testing.T) {
defer f.Close()
gfi, err := f.Stat()
if err != nil {
t.Fatalf("stat of %s: %v", err)
t.Fatalf("stat of %s: %v", name, err)
}
if gfi.Ino != wfi.Ino {
t.Errorf("%s got different inode")
t.Errorf("%s got different inode", name)
}
}
test(Dir("/etc/"), "/hosts")
......
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