]> Cypherpunks repositories - gostls13.git/commitdiff
os: fix build
authorRob Pike <r@golang.org>
Thu, 16 Feb 2012 06:39:04 +0000 (17:39 +1100)
committerRob Pike <r@golang.org>
Thu, 16 Feb 2012 06:39:04 +0000 (17:39 +1100)
TBR=golang-dev
CC=golang-dev
https://golang.org/cl/5674070

src/pkg/os/path_test.go

index 774438067897f74b459df41860ca7c1f02054e3f..8a786008c01809df4f981ea6680981057fedf2dd 100644 (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)