From 11fa17fc6e13bfd7db51fabf44466e2581f8499b Mon Sep 17 00:00:00 2001 From: Luciano Lo Giudice Date: Thu, 17 Feb 2022 18:19:49 -0300 Subject: [PATCH] Correctly prefix module access --- zaza/openstack/charm_tests/ceph/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zaza/openstack/charm_tests/ceph/tests.py b/zaza/openstack/charm_tests/ceph/tests.py index 1ef7c10..de493a3 100644 --- a/zaza/openstack/charm_tests/ceph/tests.py +++ b/zaza/openstack/charm_tests/ceph/tests.py @@ -557,8 +557,8 @@ class CephTest(test_utils.OpenStackBaseTest): mon = next(iter(zaza_model.get_units('ceph-mon'))).entity_id osds = [x.entity_id for x in zaza_model.get_units('ceph-osd')] for unit in osds: - add_storage(unit, 'cache-devices', 'cinder', 10) - loop_dev = add_loop_device(unit, 10) + zaza_model.add_storage(unit, 'cache-devices', 'cinder', 10) + loop_dev = zaza_utils.add_loop_device(unit, 10) action_obj = zaza_model.run_action( unit_name=unit, action_name='add-disk',