diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-11-28 08:57:10 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-28 08:57:10 -0800 |
commit | 8c15a1e067f510ca8471ca2a81cdf704e374332a (patch) | |
tree | 03794e2a7f450ad3a71ebb73b70628a9d6dd7e08 /contrib/python/podman/test/test_containers.py | |
parent | f3289fed2e8c0183820e8d86dabe6a262cb6f601 (diff) | |
parent | f8c5e75a10fb0a9a3a3c113075c129521c5c5099 (diff) | |
download | podman-8c15a1e067f510ca8471ca2a81cdf704e374332a.tar.gz podman-8c15a1e067f510ca8471ca2a81cdf704e374332a.tar.bz2 podman-8c15a1e067f510ca8471ca2a81cdf704e374332a.zip |
Merge pull request #1881 from jwhonce/bug/1867
Fixes #1867
Diffstat (limited to 'contrib/python/podman/test/test_containers.py')
-rw-r--r-- | contrib/python/podman/test/test_containers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/podman/test/test_containers.py b/contrib/python/podman/test/test_containers.py index 3de1e54bc..a7a6ac304 100644 --- a/contrib/python/podman/test/test_containers.py +++ b/contrib/python/podman/test/test_containers.py @@ -152,7 +152,7 @@ class TestContainers(PodmanTestCase): changes.append('WORKDIR=/data/application') id = self.alpine_ctnr.commit( - 'alpine3', author='Bozo the clown', changes=changes, pause=True) + 'alpine3', author='Bozo the clown', change=changes, pause=True) img = self.pclient.images.get(id) self.assertIsNotNone(img) |