1
0
mirror of https://github.com/golang/go synced 2024-09-30 04:34:33 -06:00

io/ioutil: Fix dropped test error

Change-Id: I9cfaba4f1af23ab67627bf496739311e4d1984c3
Reviewed-on: https://go-review.googlesource.com/c/go/+/205245
Reviewed-by: Robert Griesemer <gri@golang.org>
Run-TryBot: Robert Griesemer <gri@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
Lars Lehtonen 2019-11-04 16:33:31 -08:00 committed by Ian Lance Taylor
parent 4a7ed1fab7
commit a866b48e4a

View File

@ -72,6 +72,9 @@ func TestReadOnlyWriteFile(t *testing.T) {
// We don't want to use TempFile directly, since that opens a file for us as 0600.
tempDir, err := TempDir("", t.Name())
if err != nil {
t.Fatalf("TempDir %s: %v", t.Name(), err)
}
defer os.RemoveAll(tempDir)
filename := filepath.Join(tempDir, "blurp.txt")