diff options
author | Jhon Honce <jhonce@redhat.com> | 2018-11-27 11:23:49 -0700 |
---|---|---|
committer | Jhon Honce <jhonce@redhat.com> | 2018-11-28 08:56:24 -0700 |
commit | f8c5e75a10fb0a9a3a3c113075c129521c5c5099 (patch) | |
tree | 19ebb098f6ae635761121b889884bf376281d578 /contrib/python/podman/test | |
parent | 7ae37dcafced4da7fd1e65e6ec41a07220c06542 (diff) | |
download | podman-f8c5e75a10fb0a9a3a3c113075c129521c5c5099.tar.gz podman-f8c5e75a10fb0a9a3a3c113075c129521c5c5099.tar.bz2 podman-f8c5e75a10fb0a9a3a3c113075c129521c5c5099.zip |
Fixes #1867
* Some items included in the CLI and currently not supported by the API.
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'contrib/python/podman/test')
-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) |