From d07e3380b0f8a7c65eca9037d913b71301c517fb Mon Sep 17 00:00:00 2001 From: Alex Brainman Date: Fri, 6 Mar 2015 10:34:59 +1100 Subject: [PATCH] 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 --- src/os/path_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.48.1