aboutsummaryrefslogtreecommitdiff
path: root/src/path/filepath
diff options
context:
space:
mode:
authorJosh Bleecher Snyder <josharian@gmail.com>2016-10-24 15:56:48 -0700
committerJosh Bleecher Snyder <josharian@gmail.com>2016-10-25 00:17:57 +0000
commit7e9f420ddfb1ce8882bb715158cdb8b977b93955 (patch)
treeb47d954d42edbb2b9220541f7de99ed87d9d4aa2 /src/path/filepath
parentc63db157bd669845a23255ab268596669a5ea5df (diff)
downloadgo-7e9f420ddfb1ce8882bb715158cdb8b977b93955.tar.xz
test: delete bugs directory
It appears to be a vestigial holding ground for bugs. But we have an issue tracker, and #1909 is there and open. Change-Id: I912ff222a24c51fab483be0c67dad534f5a84488 Reviewed-on: https://go-review.googlesource.com/31859 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/path/filepath')
-rw-r--r--src/path/filepath/path_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/path/filepath/path_test.go b/src/path/filepath/path_test.go
index e319e3c973..94f9c01459 100644
--- a/src/path/filepath/path_test.go
+++ b/src/path/filepath/path_test.go
@@ -1295,7 +1295,7 @@ func TestBug3486(t *testing.T) { // https://golang.org/issue/3486
if err != nil {
t.Fatal(err)
}
- bugs := filepath.Join(root, "bugs")
+ bugs := filepath.Join(root, "fixedbugs")
ken := filepath.Join(root, "ken")
seenBugs := false
seenKen := false
@@ -1310,7 +1310,7 @@ func TestBug3486(t *testing.T) { // https://golang.org/issue/3486
return filepath.SkipDir
case ken:
if !seenBugs {
- t.Fatal("filepath.Walk out of order - ken before bugs")
+ t.Fatal("filepath.Walk out of order - ken before fixedbugs")
}
seenKen = true
}