diff options
author | Jhon Honce <jhonce@redhat.com> | 2018-08-02 07:25:28 -0700 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-08-05 11:06:18 +0000 |
commit | 54eec54b2a80705b5c8a4e61abf360295d29c01f (patch) | |
tree | 67e7cac51412df36f2d0957a925b88a8d99e24fd /contrib/python/podman/test/test_tunnel.py | |
parent | 47620961fe8eb9ec859b33bd0480a698e655af69 (diff) | |
download | podman-54eec54b2a80705b5c8a4e61abf360295d29c01f.tar.gz podman-54eec54b2a80705b5c8a4e61abf360295d29c01f.tar.bz2 podman-54eec54b2a80705b5c8a4e61abf360295d29c01f.zip |
Add missing dependencies to build system
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Closes: #1199
Approved by: rhatdan
Diffstat (limited to 'contrib/python/podman/test/test_tunnel.py')
-rw-r--r-- | contrib/python/podman/test/test_tunnel.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/contrib/python/podman/test/test_tunnel.py b/contrib/python/podman/test/test_tunnel.py index ed23fd905..cdcc8466a 100644 --- a/contrib/python/podman/test/test_tunnel.py +++ b/contrib/python/podman/test/test_tunnel.py @@ -52,6 +52,8 @@ class TestTunnel(unittest.TestCase): @patch('os.path.exists', return_value=True) @patch('weakref.finalize') def test_tunnel(self, mock_finalize, mock_exists, mock_Popen): + mock_Popen.return_value.returncode = 0 + context = Context( 'unix:/01', 'io.projectatomic.podman', |