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 45f0a2964..af6d4741e 100644
--- a/contrib/python/podman/test/test_images.py
+++ b/contrib/python/podman/test/test_images.py
@@ -69,7 +69,7 @@ class TestImages(PodmanTestCase):
self.assertEqual(FoldedString(ctnr.status), 'running')
ctnr_details = ctnr.inspect()
- for e in img_details.containerconfig['env']:
+ for e in img_details.config['env']:
self.assertIn(e, ctnr_details.config['env'])
def test_export(self):