summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-05-17 12:10:57 +0000
committerGerrit Code Review <review@openstack.org>2013-05-17 12:10:57 +0000
commit2b8b1483118891d0451b2d2276a0f86c30cdda98 (patch)
tree823b965f17af86d1defeb9b62a57b5dee39dbd3a /tests
parent368b9d151c2c1092af41916d13d523aa6ca621e1 (diff)
parent1d7920a736baf30bf1f825545b8d0ef668694cec (diff)
downloadoslo-2b8b1483118891d0451b2d2276a0f86c30cdda98.tar.gz
oslo-2b8b1483118891d0451b2d2276a0f86c30cdda98.tar.xz
oslo-2b8b1483118891d0451b2d2276a0f86c30cdda98.zip
Merge "Extract matchmaker_ring to own module"
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/rpc/test_matchmaker.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/unit/rpc/test_matchmaker.py b/tests/unit/rpc/test_matchmaker.py
index bcc7ef8..71688a4 100644
--- a/tests/unit/rpc/test_matchmaker.py
+++ b/tests/unit/rpc/test_matchmaker.py
@@ -17,6 +17,7 @@
import logging
from openstack.common.rpc import matchmaker
+from openstack.common.rpc import matchmaker_ring
from tests.unit.rpc import matchmaker_common as common
from tests import utils
@@ -32,7 +33,7 @@ class MatchMakerFileTestCase(utils.BaseTestCase, common._MatchMakerTestCase):
ring = {
self.topic: self.hosts
}
- self.driver = matchmaker.MatchMakerRing(ring)
+ self.driver = matchmaker_ring.MatchMakerRing(ring)
class MatchMakerLocalhostTestCase(utils.BaseTestCase,