summaryrefslogtreecommitdiff
path: root/contrib/python/podman/test/test_client.py
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/python/podman/test/test_client.py')
-rw-r--r--contrib/python/podman/test/test_client.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/python/podman/test/test_client.py b/contrib/python/podman/test/test_client.py
index d36cb1a43..3fc6d39dc 100644
--- a/contrib/python/podman/test/test_client.py
+++ b/contrib/python/podman/test/test_client.py
@@ -15,7 +15,7 @@ class TestClient(unittest.TestCase):
def test_local(self, mock_ping):
p = Client(
uri='unix:/run/podman',
- interface='io.projectatomic.podman',
+ interface='io.podman',
)
self.assertIsInstance(p._client, LocalClient)
@@ -27,7 +27,7 @@ class TestClient(unittest.TestCase):
def test_remote(self, mock_ping):
p = Client(
uri='unix:/run/podman',
- interface='io.projectatomic.podman',
+ interface='io.podman',
remote_uri='ssh://user@hostname/run/podman/podman',
identity_file='~/.ssh/id_rsa')