mirror of https://github.com/containers/podman.git
Fix an expected error message from pod removal
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
This commit is contained in:
parent
a750cd9876
commit
310082444c
|
@ -123,7 +123,7 @@ var _ = Describe("Podman pod rm", func() {
|
|||
result := podmanTest.Podman([]string{"pod", "rm", "-a"})
|
||||
result.WaitWithDefaultTimeout()
|
||||
Expect(result).To(ExitWithError())
|
||||
Expect(result.ErrorToString()).To(ContainSubstring("cannot be removed"))
|
||||
Expect(result.ErrorToString()).To(ContainSubstring("not all containers could be removed from pod"))
|
||||
|
||||
numPods = podmanTest.NumberOfPods()
|
||||
ps = podmanTest.Podman([]string{"pod", "ps"})
|
||||
|
|
Loading…
Reference in New Issue