mirror of https://github.com/docker/cli.git
cli/command/image/build/context_test.go:244:38: `createTestTempDir` - `prefix` always receives `"builder-context-test"` (unparam)
Signed-off-by: Silvin Lubecki <silvin.lubecki@docker.com>
This commit is contained in:
parent
4be924a0af
commit
b83545ebbc
|
@ -241,6 +241,7 @@ func TestValidateContextDirectoryWithOneFileExcludes(t *testing.T) {
|
||||||
// createTestTempDir creates a temporary directory for testing.
|
// createTestTempDir creates a temporary directory for testing.
|
||||||
// It returns the created path and a cleanup function which is meant to be used as deferred call.
|
// It returns the created path and a cleanup function which is meant to be used as deferred call.
|
||||||
// When an error occurs, it terminates the test.
|
// When an error occurs, it terminates the test.
|
||||||
|
//nolint: unparam
|
||||||
func createTestTempDir(t *testing.T, prefix string) (string, func()) {
|
func createTestTempDir(t *testing.T, prefix string) (string, func()) {
|
||||||
path, err := ioutil.TempDir("", prefix)
|
path, err := ioutil.TempDir("", prefix)
|
||||||
assert.NilError(t, err)
|
assert.NilError(t, err)
|
||||||
|
|
Loading…
Reference in New Issue