aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/path/path_test.go
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2010-04-09 11:36:40 -0700
committerRob Pike <r@golang.org>2010-04-09 11:36:40 -0700
commit3ddeef81532df116ce4e8fd02fec68a3c2063d65 (patch)
tree785f97a877212b48c850995c21974f912e13bba3 /src/pkg/path/path_test.go
parenta17544f2832fe00e8d32d45215b37bc8ee6c10a5 (diff)
downloadgo-3ddeef81532df116ce4e8fd02fec68a3c2063d65.tar.xz
rename os.Dir to os.FileInfo
R=rsc CC=golang-dev https://golang.org/cl/902042
Diffstat (limited to 'src/pkg/path/path_test.go')
-rw-r--r--src/pkg/path/path_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pkg/path/path_test.go b/src/pkg/path/path_test.go
index cd5978c156..e2458f20c4 100644
--- a/src/pkg/path/path_test.go
+++ b/src/pkg/path/path_test.go
@@ -224,13 +224,13 @@ func mark(name string) {
type TestVisitor struct{}
-func (v *TestVisitor) VisitDir(path string, d *os.Dir) bool {
- mark(d.Name)
+func (v *TestVisitor) VisitDir(path string, f *os.FileInfo) bool {
+ mark(f.Name)
return true
}
-func (v *TestVisitor) VisitFile(path string, d *os.Dir) {
- mark(d.Name)
+func (v *TestVisitor) VisitFile(path string, f *os.FileInfo) {
+ mark(f.Name)
}
func TestWalk(t *testing.T) {