diff options
author | Jhon Honce <jhonce@redhat.com> | 2018-07-25 14:04:34 -0700 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-07-28 11:49:11 +0000 |
commit | 5aa36c1861a6972b49df1b6022aa2f4ac30e1e66 (patch) | |
tree | 7f2a9da82c423edc21f6a8208fbd6c62ada2a5c2 /contrib/python/podman/test | |
parent | 87d8edb4c10e53e6e9833ff8b64c3c0041f1823b (diff) | |
download | podman-5aa36c1861a6972b49df1b6022aa2f4ac30e1e66.tar.gz podman-5aa36c1861a6972b49df1b6022aa2f4ac30e1e66.tar.bz2 podman-5aa36c1861a6972b49df1b6022aa2f4ac30e1e66.zip |
Clean up pylint warnings and errors for podman
* Some of the pedantic errors were not corrected
* Clean up prep for porting to MacOS and PyPi hosting
* Fix broken unittest
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Closes: #1159
Approved by: rhatdan
Diffstat (limited to 'contrib/python/podman/test')
-rw-r--r-- | contrib/python/podman/test/test_images.py | 2 |
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 14bf90992..854f57dd7 100644 --- a/contrib/python/podman/test/test_images.py +++ b/contrib/python/podman/test/test_images.py @@ -109,7 +109,7 @@ class TestImages(PodmanTestCase): self.assertEqual(self.alpine_image.id, self.alpine_image.tag('alpine:fubar')) self.loadCache() - self.assertIn('alpine:fubar', self.alpine_image.repoTags) + self.assertIn('localhost/alpine:fubar', self.alpine_image.repoTags) def test_remove(self): before = self.loadCache() |