diff options
author | Sascha Grunert <sgrunert@suse.com> | 2019-03-22 09:56:34 +0100 |
---|---|---|
committer | Sascha Grunert <sgrunert@suse.com> | 2019-04-04 09:07:05 +0200 |
commit | 81a4451fea812d65ddef4b3a4fc821cbfefd7670 (patch) | |
tree | 2b7fe3a3df1f08a106c012a74580604020421bd6 /test/e2e | |
parent | 42830ab711aadb69e344a58627c6c7cfee45ddc9 (diff) | |
download | podman-81a4451fea812d65ddef4b3a4fc821cbfefd7670.tar.gz podman-81a4451fea812d65ddef4b3a4fc821cbfefd7670.tar.bz2 podman-81a4451fea812d65ddef4b3a4fc821cbfefd7670.zip |
Add deadcode linter
Signed-off-by: Sascha Grunert <sgrunert@suse.com>
Diffstat (limited to 'test/e2e')
-rw-r--r-- | test/e2e/common_test.go | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/test/e2e/common_test.go b/test/e2e/common_test.go index b20b3b37e..0b3db32f4 100644 --- a/test/e2e/common_test.go +++ b/test/e2e/common_test.go @@ -22,15 +22,14 @@ import ( ) var ( - PODMAN_BINARY string - CONMON_BINARY string - CNI_CONFIG_DIR string - RUNC_BINARY string - INTEGRATION_ROOT string - CGROUP_MANAGER = "systemd" - ARTIFACT_DIR = "/tmp/.artifacts" - RESTORE_IMAGES = []string{ALPINE, BB} - defaultWaitTimeout = 90 + PODMAN_BINARY string + CONMON_BINARY string + CNI_CONFIG_DIR string + RUNC_BINARY string + INTEGRATION_ROOT string + CGROUP_MANAGER = "systemd" + ARTIFACT_DIR = "/tmp/.artifacts" + RESTORE_IMAGES = []string{ALPINE, BB} ) // PodmanTestIntegration struct for command line options |