diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-12-02 18:33:58 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-02 18:33:58 -0800 |
commit | c9696c451df1efe181c103f9f227787af14dd7b1 (patch) | |
tree | cf4955835474fd555f83ab9d4c40ddd39c0ab6d0 /test/e2e | |
parent | 711728672f93d20d4aaf084e49db5e282fece952 (diff) | |
parent | bca01ed46121aebd7b770cd98130f1b14834fc91 (diff) | |
download | podman-c9696c451df1efe181c103f9f227787af14dd7b1.tar.gz podman-c9696c451df1efe181c103f9f227787af14dd7b1.tar.bz2 podman-c9696c451df1efe181c103f9f227787af14dd7b1.zip |
Merge pull request #4596 from kunalkushwaha/container-prune
container prune command fixed as per docker prune command
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)) |