Skip to content

Commit 4eb75f6

Browse files
committed
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 <[email protected]>
1 parent dac3fa2 commit 4eb75f6

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

test/e2e/config.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ package integration
44

55
var (
66
REDIS_IMAGE = "quay.io/libpod/redis:alpine"
7-
fedoraMinimal = "quay.io/libpod/systemd-image:20240124"
87
ALPINE = "quay.io/libpod/alpine:latest"
98
ALPINELISTTAG = "quay.io/libpod/alpine:3.10.2"
109
ALPINELISTDIGEST = "quay.io/libpod/alpine@sha256:fa93b01658e3a5a1686dc3ae55f170d8de487006fb53a28efcd12ab0710a2e5f"
@@ -15,7 +14,6 @@ var (
1514
INFRA_IMAGE = "quay.io/libpod/k8s-pause:3.5"
1615
BB = "quay.io/libpod/busybox:latest"
1716
HEALTHCHECK_IMAGE = "quay.io/libpod/alpine_healthcheck:latest"
18-
volumeTest = "quay.io/libpod/volume-plugin-test-img:20220623"
1917

2018
// ImageCacheDir is initialized at runtime.
2119
// e.g., filepath.Join(os.TempDir(), "imagecachedir")

test/e2e/config_test.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
//go:build linux || freebsd
2+
3+
package integration
4+
5+
var (
6+
fedoraMinimal = "quay.io/libpod/systemd-image:20240124"
7+
volumeTest = "quay.io/libpod/volume-plugin-test-img:20220623"
8+
)

0 commit comments

Comments
 (0)