2022-08-24 14:45:55 -07:00
|
|
|
// Copyright 2020-2022 the Pinniped contributors. All Rights Reserved.
|
2020-11-24 13:38:28 -06:00
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2022-08-24 14:45:55 -07:00
|
|
|
//go:build !go1.14
|
2020-11-24 13:38:28 -06:00
|
|
|
// +build !go1.14
|
|
|
|
|
|
|
|
package testutil
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TempDir(t *testing.T) string {
|
|
|
|
return t.TempDir()
|
|
|
|
}
|