summaryrefslogtreecommitdiff
path: root/horizon/tests/test_data/exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'horizon/tests/test_data/exceptions.py')
-rw-r--r--horizon/tests/test_data/exceptions.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/horizon/tests/test_data/exceptions.py b/horizon/tests/test_data/exceptions.py
index a33978fa..ab55941b 100644
--- a/horizon/tests/test_data/exceptions.py
+++ b/horizon/tests/test_data/exceptions.py
@@ -15,6 +15,7 @@
import glanceclient.exc as glance_exceptions
from keystoneclient import exceptions as keystone_exceptions
from novaclient import exceptions as nova_exceptions
+from quantumclient.common import exceptions as quantum_exceptions
from .utils import TestDataContainer
@@ -53,3 +54,6 @@ def data(TEST):
glance_exception = glance_exceptions.ClientException
TEST.exceptions.glance = create_stubbed_exception(glance_exception)
+
+ quantum_exception = quantum_exceptions.QuantumClientException
+ TEST.exceptions.quantum = create_stubbed_exception(quantum_exception)