mirror of https://github.com/containers/podman.git
test/e2e: fix unused linter warning
This is shown when golangci-lint is run with --tests=false > test/e2e/config.go:7:2: var fedoraMinimal is unused (unused) > fedoraMinimal = "quay.io/libpod/systemd-image:20240124" > ^ > test/e2e/config.go:18:2: var volumeTest is unused (unused) > volumeTest = "quay.io/libpod/volume-plugin-test-img:20220623" > ^ Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
This commit is contained in:
parent
dac3fa2f97
commit
4eb75f68cf
|
@ -4,7 +4,6 @@ package integration
|
||||||
|
|
||||||
var (
|
var (
|
||||||
REDIS_IMAGE = "quay.io/libpod/redis:alpine"
|
REDIS_IMAGE = "quay.io/libpod/redis:alpine"
|
||||||
fedoraMinimal = "quay.io/libpod/systemd-image:20240124"
|
|
||||||
ALPINE = "quay.io/libpod/alpine:latest"
|
ALPINE = "quay.io/libpod/alpine:latest"
|
||||||
ALPINELISTTAG = "quay.io/libpod/alpine:3.10.2"
|
ALPINELISTTAG = "quay.io/libpod/alpine:3.10.2"
|
||||||
ALPINELISTDIGEST = "quay.io/libpod/alpine@sha256:fa93b01658e3a5a1686dc3ae55f170d8de487006fb53a28efcd12ab0710a2e5f"
|
ALPINELISTDIGEST = "quay.io/libpod/alpine@sha256:fa93b01658e3a5a1686dc3ae55f170d8de487006fb53a28efcd12ab0710a2e5f"
|
||||||
|
@ -15,7 +14,6 @@ var (
|
||||||
INFRA_IMAGE = "quay.io/libpod/k8s-pause:3.5"
|
INFRA_IMAGE = "quay.io/libpod/k8s-pause:3.5"
|
||||||
BB = "quay.io/libpod/busybox:latest"
|
BB = "quay.io/libpod/busybox:latest"
|
||||||
HEALTHCHECK_IMAGE = "quay.io/libpod/alpine_healthcheck:latest"
|
HEALTHCHECK_IMAGE = "quay.io/libpod/alpine_healthcheck:latest"
|
||||||
volumeTest = "quay.io/libpod/volume-plugin-test-img:20220623"
|
|
||||||
|
|
||||||
// ImageCacheDir is initialized at runtime.
|
// ImageCacheDir is initialized at runtime.
|
||||||
// e.g., filepath.Join(os.TempDir(), "imagecachedir")
|
// e.g., filepath.Join(os.TempDir(), "imagecachedir")
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
//go:build linux || freebsd
|
||||||
|
|
||||||
|
package integration
|
||||||
|
|
||||||
|
var (
|
||||||
|
fedoraMinimal = "quay.io/libpod/systemd-image:20240124"
|
||||||
|
volumeTest = "quay.io/libpod/volume-plugin-test-img:20220623"
|
||||||
|
)
|
Loading…
Reference in New Issue