From 15fdbe944242189ced76f733bfc142903e6dc2fa Mon Sep 17 00:00:00 2001 From: ByoungUk Lee Date: Mon, 22 Sep 2025 13:56:43 +0900 Subject: [PATCH] test: remove hack workaround in 'use plugin in containers' Signed-off-by: ByoungUk Lee --- test/e2e/volume_plugin_test.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/test/e2e/volume_plugin_test.go b/test/e2e/volume_plugin_test.go index 860c7643d6..97ef401e52 100644 --- a/test/e2e/volume_plugin_test.go +++ b/test/e2e/volume_plugin_test.go @@ -188,13 +188,6 @@ var _ = Describe("Podman volume plugins", func() { ctr2.WaitWithDefaultTimeout() Expect(ctr2).Should(ExitCleanly()) Expect(ctr2.OutputToString()).To(ContainSubstring("helloworld")) - - // HACK: `volume rm -f` is timing out trying to remove containers using the volume. - // Solution: remove them manually... - // TODO: fix this when I get back - rmAll := podmanTest.Podman([]string{"rm", "-f", ctr2Name, ctr1Name}) - rmAll.WaitWithDefaultTimeout() - Expect(rmAll).Should(ExitCleanly()) }) It("podman volume reload", func() {