1
0
mirror of https://github.com/golang/go synced 2024-11-22 05:24:39 -07:00

os: fix build

TBR=golang-dev
CC=golang-dev
https://golang.org/cl/5674070
This commit is contained in:
Rob Pike 2012-02-16 17:39:04 +11:00
parent dfef0c2dcc
commit fa8bc8a648

View File

@ -13,7 +13,7 @@ import (
func TestMkdirAll(t *testing.T) {
tmpDir := TempDir()
path := tmpDir + "_/_TestMkdirAll_/dir/./dir2"
path := tmpDir + "/_TestMkdirAll_/dir/./dir2"
err := MkdirAll(path, 0777)
if err != nil {
t.Fatalf("MkdirAll %q: %s", path, err)