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