summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Giusti <kgiusti@gmail.com>2015-02-05 16:55:11 -0500
committerKenneth Giusti <kgiusti@gmail.com>2015-02-05 16:55:11 -0500
commit3d366c94895eb05461c84b6df9cd215df77ecd09 (patch)
treeb876801d7e414d6c9d8a588b9e4ddd0a31b18e90
parent081a0174520c1c263f7abea2527cc72f6ed6b9b9 (diff)
downloadoslo-messaging-3d366c94895eb05461c84b6df9cd215df77ecd09.tar.gz
Fix the import of the driver by the unit test
Change-Id: I6fa591eefdb670cc7e8ca701850326c717d634bf Closes-bug: #1418728
-rw-r--r--tests/test_amqp_driver.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_amqp_driver.py b/tests/test_amqp_driver.py
index 755b3da..6dc2368 100644
--- a/tests/test_amqp_driver.py
+++ b/tests/test_amqp_driver.py
@@ -32,7 +32,7 @@ from oslo_messaging.tests import utils as test_utils
# are available in the base repos for all supported platforms.
pyngus = importutils.try_import("pyngus")
if pyngus:
- from oslo.messaging._drivers.protocols.amqp import driver as amqp_driver
+ from oslo_messaging._drivers.protocols.amqp import driver as amqp_driver
LOG = logging.getLogger(__name__)