Commit d07e3380 authored by Alex Brainman's avatar Alex Brainman

os: do not leave /go_os_test/dir after test

Change-Id: Idb8e211bf33d2713735f9cdc868a3458ce799c97
Reviewed-on: https://go-review.googlesource.com/6913Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
parent 392434e1
...@@ -213,7 +213,7 @@ func TestMkdirAllAtSlash(t *testing.T) { ...@@ -213,7 +213,7 @@ func TestMkdirAllAtSlash(t *testing.T) {
} }
} }
RemoveAll("/_go_os_test") RemoveAll("/_go_os_test")
const dir = "/go_os_test/dir" const dir = "/_go_os_test/dir"
err := MkdirAll(dir, 0777) err := MkdirAll(dir, 0777)
if err != nil { if err != nil {
pathErr, ok := err.(*PathError) pathErr, ok := err.(*PathError)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment