aboutsummaryrefslogtreecommitdiff
path: root/src/archive
diff options
context:
space:
mode:
authorManlio Perillo <manlio.perillo@gmail.com>2021-04-13 12:35:28 +0200
committerIan Lance Taylor <iant@golang.org>2021-04-13 21:06:12 +0000
commit069983e5db99fa6b94401f971e9c19440615d233 (patch)
treebd265c9b303c28ec574eb9d04ace9d93852cbf46 /src/archive
parent3bf645a6338d0699116f58f5ae5b0f2a0f0dca65 (diff)
downloadgo-069983e5db99fa6b94401f971e9c19440615d233.tar.gz
go-069983e5db99fa6b94401f971e9c19440615d233.zip
archive/tar: replace os.MkdirTemp with T.TempDir
Updates #45402 Change-Id: I296f8c676c68ed1e10b6ad1a17b5b23d2c395252 Reviewed-on: https://go-review.googlesource.com/c/go/+/309355 Run-TryBot: Ian Lance Taylor <iant@golang.org> Reviewed-by: Joe Tsai <thebrokentoaster@gmail.com> Reviewed-by: Ian Lance Taylor <iant@golang.org> Trust: Joe Tsai <thebrokentoaster@gmail.com> TryBot-Result: Go Bot <gobot@golang.org>
Diffstat (limited to 'src/archive')
-rw-r--r--src/archive/tar/tar_test.go9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/archive/tar/tar_test.go b/src/archive/tar/tar_test.go
index 91b38401b6..e9fafc7cc7 100644
--- a/src/archive/tar/tar_test.go
+++ b/src/archive/tar/tar_test.go
@@ -262,16 +262,11 @@ func TestFileInfoHeaderDir(t *testing.T) {
func TestFileInfoHeaderSymlink(t *testing.T) {
testenv.MustHaveSymlink(t)
- tmpdir, err := os.MkdirTemp("", "TestFileInfoHeaderSymlink")
- if err != nil {
- t.Fatal(err)
- }
- defer os.RemoveAll(tmpdir)
+ tmpdir := t.TempDir()
link := filepath.Join(tmpdir, "link")
target := tmpdir
- err = os.Symlink(target, link)
- if err != nil {
+ if err := os.Symlink(target, link); err != nil {
t.Fatal(err)
}
fi, err := os.Lstat(link)