diff options
Diffstat (limited to 'plugin/grpc/proxy_test.go')
-rw-r--r-- | plugin/grpc/proxy_test.go | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/plugin/grpc/proxy_test.go b/plugin/grpc/proxy_test.go index 534fde3d7..2ca0b1b48 100644 --- a/plugin/grpc/proxy_test.go +++ b/plugin/grpc/proxy_test.go @@ -4,7 +4,6 @@ import ( "context" "errors" "net" - "os" "path" "testing" @@ -72,11 +71,7 @@ func (m testServiceClient) Query(ctx context.Context, in *pb.DnsPacket, opts ... } func TestProxyUnix(t *testing.T) { - tdir, err := os.MkdirTemp("", "tmp*") - if err != nil { - t.Fatal(err) - } - defer os.RemoveAll(tdir) + tdir := t.TempDir() fd := path.Join(tdir, "test.grpc") listener, err := net.Listen("unix", fd) |