From cd5c8c26eb7373f72e7c6b2b62db1c9ad8ccdadb Mon Sep 17 00:00:00 2001 From: Billy Olsen Date: Mon, 14 Mar 2022 13:36:33 -0700 Subject: [PATCH] Import exceptions module instead of exception (#722) A missing 's' on importing the zaza.openstack.utilities.exceptions in the octavia tests are causing gate tests to fail. This fixes the import to point at the right module. Fixes #721 Signed-off-by: Billy Olsen --- zaza/openstack/charm_tests/octavia/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zaza/openstack/charm_tests/octavia/tests.py b/zaza/openstack/charm_tests/octavia/tests.py index a46ce83..5996b6c 100644 --- a/zaza/openstack/charm_tests/octavia/tests.py +++ b/zaza/openstack/charm_tests/octavia/tests.py @@ -29,7 +29,7 @@ import zaza.openstack.utilities.openstack as openstack_utils from zaza.openstack.utilities import generic as generic_utils from zaza.openstack.utilities import ObjectRetrierWraps -from zaza.openstack.utilities.exception import ( +from zaza.openstack.utilities.exceptions import ( LoadBalancerUnexpectedState, LoadBalancerUnrecoverableError, )