From fa8bc8a6483cae53460810a797a8ef322d1cca64 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Thu, 16 Feb 2012 17:39:04 +1100 Subject: [PATCH] os: fix build TBR=golang-dev CC=golang-dev https://golang.org/cl/5674070 --- src/pkg/os/path_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.48.1