From: Alex Brainman Date: Thu, 5 Mar 2015 23:34:59 +0000 (+1100) Subject: os: do not leave /go_os_test/dir after test X-Git-Tag: go1.5beta1~1679 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d07e3380b0f8a7c65eca9037d913b71301c517fb;p=gostls13.git os: do not leave /go_os_test/dir after test Change-Id: Idb8e211bf33d2713735f9cdc868a3458ce799c97 Reviewed-on: https://go-review.googlesource.com/6913 Reviewed-by: Ian Lance Taylor --- diff --git a/src/os/path_test.go b/src/os/path_test.go index 0aa327fbc6..c2258736de 100644 --- a/src/os/path_test.go +++ b/src/os/path_test.go @@ -213,7 +213,7 @@ func TestMkdirAllAtSlash(t *testing.T) { } } RemoveAll("/_go_os_test") - const dir = "/go_os_test/dir" + const dir = "/_go_os_test/dir" err := MkdirAll(dir, 0777) if err != nil { pathErr, ok := err.(*PathError)