diff options
author | Kunal Kushwaha <kunal.kushwaha@gmail.com> | 2019-11-29 14:28:34 +0900 |
---|---|---|
committer | Kunal Kushwaha <kunal.kushwaha@gmail.com> | 2019-11-29 15:28:55 +0900 |
commit | 10c37a2c93c76fb698e41dbdf076793c9a16d02b (patch) | |
tree | c37aebdb60b93c42b1c8c79894dec6828f3ad047 /test/e2e | |
parent | 0602ce4dc04ec1b78724019e03066b8562877b73 (diff) | |
download | podman-10c37a2c93c76fb698e41dbdf076793c9a16d02b.tar.gz podman-10c37a2c93c76fb698e41dbdf076793c9a16d02b.tar.bz2 podman-10c37a2c93c76fb698e41dbdf076793c9a16d02b.zip |
filter added to container prune command
filter flag helps to filter the containers based on
labels, until(time), name, etc for prune command.
Signed-off-by: Kunal Kushwaha <kunal.kushwaha@gmail.com>
Diffstat (limited to 'test/e2e')
-rw-r--r-- | test/e2e/prune_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/prune_test.go b/test/e2e/prune_test.go index 16522785b..c9b01ad4a 100644 --- a/test/e2e/prune_test.go +++ b/test/e2e/prune_test.go @@ -52,7 +52,7 @@ var _ = Describe("Podman prune", func() { stop.WaitWithDefaultTimeout() Expect(stop.ExitCode()).To(Equal(0)) - prune := podmanTest.Podman([]string{"container", "prune"}) + prune := podmanTest.Podman([]string{"container", "prune", "-f"}) prune.WaitWithDefaultTimeout() Expect(prune.ExitCode()).To(Equal(0)) |