Skip to content

Commit af495e1

Browse files
committed
Replace alpine_nginx with TESTIMAGE in e2e tests
The image quay.io/libpod/alpine_nginx doesn't have a `linux/arm64` version and the test "Single character volume mount" on Windows ARM64 was failing. Changing it to TESTIMAGE (quay.io/libpod/testimage) fixes it. Signed-off-by: Mario Loriedo <[email protected]>
1 parent 9a452db commit af495e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/machine/e2e/basic_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ var _ = Describe("run basic podman commands", func() {
113113
Expect(err).ToNot(HaveOccurred())
114114
Expect(volumeCreate).To(Exit(0))
115115

116-
run, err := mb.setCmd(bm.withPodmanCommand([]string{"run", "-v", "a:/test:Z", "quay.io/libpod/alpine_nginx", "true"})).run()
116+
run, err := mb.setCmd(bm.withPodmanCommand([]string{"run", "-v", "a:/test:Z", TESTIMAGE, "true"})).run()
117117
Expect(err).ToNot(HaveOccurred())
118118
Expect(run).To(Exit(0))
119119
})

0 commit comments

Comments
 (0)