From a7df335cc84cc5fb175cb4c8df00faf7c38d838c Mon Sep 17 00:00:00 2001 From: Alex Kavanagh Date: Wed, 6 May 2020 15:31:53 +0100 Subject: [PATCH] Fix missing comma --- zaza/openstack/charm_tests/ceph/mon/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zaza/openstack/charm_tests/ceph/mon/tests.py b/zaza/openstack/charm_tests/ceph/mon/tests.py index 39cf4a2..dd6d7aa 100644 --- a/zaza/openstack/charm_tests/ceph/mon/tests.py +++ b/zaza/openstack/charm_tests/ceph/mon/tests.py @@ -85,7 +85,7 @@ class CinderCephMonTest(test_utils.OpenStackBaseTest): # remove the relation so that /etc/ceph/ceph.conf is removed logging.info("Removing ceph-mon:client <-> cinder-ceph:ceph relation") zaza.model.remove_relation( - "ceph-mon", "ceph-mon:client" "cinder-ceph:ceph") + "ceph-mon", "ceph-mon:client", "cinder-ceph:ceph") logging.info("Wait till model is idle ...") zaza.model.block_until_all_units_idle() @@ -103,7 +103,7 @@ class CinderCephMonTest(test_utils.OpenStackBaseTest): # Restore cinder-ceph and ceph-mon relation to keep tests idempotent logging.info("Restoring ceph-mon:client <-> cinder-ceph:ceph relation") zaza.model.add_relation( - "ceph-mon", "ceph-mon:client" "cinder-ceph:ceph") + "ceph-mon", "ceph-mon:client", "cinder-ceph:ceph") logging.info("Wait till model is idle ...") zaza.model.block_until_all_units_idle() logging.info("... Done.")