From: Rob Pike Date: Thu, 16 Feb 2012 06:39:04 +0000 (+1100) Subject: os: fix build X-Git-Tag: weekly.2012-02-22~192 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=fa8bc8a6483cae53460810a797a8ef322d1cca64;p=gostls13.git os: fix build TBR=golang-dev CC=golang-dev https://golang.org/cl/5674070 --- diff --git a/src/pkg/os/path_test.go b/src/pkg/os/path_test.go index 7744380678..8a786008c0 100644 --- a/src/pkg/os/path_test.go +++ b/src/pkg/os/path_test.go @@ -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)