From a39ead7ed2b92a0f22fe837500b650180bb23f33 Mon Sep 17 00:00:00 2001 From: Alex Brainman Date: Fri, 24 Jun 2011 19:18:59 +1000 Subject: [PATCH] path/filepath: enable TestWalk to run on windows R=golang-dev CC=golang-dev https://golang.org/cl/4630066 --- src/pkg/path/filepath/path_test.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/pkg/path/filepath/path_test.go b/src/pkg/path/filepath/path_test.go index 6a5dd5b00d..58c4c0301a 100644 --- a/src/pkg/path/filepath/path_test.go +++ b/src/pkg/path/filepath/path_test.go @@ -293,10 +293,6 @@ func (v *TestVisitor) VisitFile(path string, f *os.FileInfo) { } func TestWalk(t *testing.T) { - // TODO(brainman): enable test once Windows version is implemented. - if runtime.GOOS == "windows" { - return - } makeTree(t) // 1) ignore error handling, expect none -- 2.50.0