summaryrefslogtreecommitdiff
path: root/contrib/python/podman/test/test_images.py
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/python/podman/test/test_images.py')
-rw-r--r--contrib/python/podman/test/test_images.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/podman/test/test_images.py b/contrib/python/podman/test/test_images.py
index 854f57dd7..f6b95f98a 100644
--- a/contrib/python/podman/test/test_images.py
+++ b/contrib/python/podman/test/test_images.py
@@ -64,7 +64,7 @@ class TestImages(PodmanTestCase):
self.assertEqual(actual.status, 'configured')
ctnr = actual.start()
- self.assertIn(ctnr.status, ['running', 'exited'])
+ self.assertIn(ctnr.status, ['running', 'stopped', 'exited'])
ctnr_details = ctnr.inspect()
for e in img_details.containerconfig['env']: