From 87a63c0d2cc461766972f6f9a0077e4953eebd8d Mon Sep 17 00:00:00 2001 From: Erica Portnoy Date: Tue, 21 Jul 2020 18:31:52 -0700 Subject: [PATCH] switch plug and slot names in integration test --- certbot-ci/snap_integration_tests/dns_tests/test_main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/certbot-ci/snap_integration_tests/dns_tests/test_main.py b/certbot-ci/snap_integration_tests/dns_tests/test_main.py index 6e79cc2e7..867e9e8d5 100644 --- a/certbot-ci/snap_integration_tests/dns_tests/test_main.py +++ b/certbot-ci/snap_integration_tests/dns_tests/test_main.py @@ -38,8 +38,8 @@ def test_dns_plugin_install(dns_snap_path): assert plugin_name in subprocess.check_output(['certbot', 'plugins', '--prepare'], universal_newlines=True) - subprocess.check_call(['snap', 'connect', 'certbot:certbot-metadata', - snap_name + ':certbot-metadata']) + subprocess.check_call(['snap', 'connect', snap_name + ':certbot-metadata', + 'certbot:certbot-metadata',]) subprocess.check_call(['snap', 'install', '--dangerous', dns_snap_path]) finally: subprocess.call(['snap', 'remove', 'plugin_name'])