Fix AttributeError in wait_for_volume_retype
The TimeoutException was coming from the wrong module,
which might have just been a rebase mistake while this
stuff was moving around.
Change-Id: Id494aea1527d03148ba9284c48a1c171d3469911
Closes-Bug: #1664633
diff --git a/tempest/common/waiters.py b/tempest/common/waiters.py
index 865db39..b7b02ab 100644
--- a/tempest/common/waiters.py
+++ b/tempest/common/waiters.py
@@ -218,7 +218,7 @@
'within the required time (%s s).' %
(volume_id, new_volume_type, current_volume_type,
client.build_timeout))
- raise exceptions.TimeoutException(message)
+ raise lib_exc.TimeoutException(message)
def wait_for_snapshot_status(client, snapshot_id, status):