summaryrefslogtreecommitdiffstats
path: root/tests/unit/scheduler/test_weights.py
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2013-01-23 09:59:46 -0500
committerMonty Taylor <mordred@inaugust.com>2013-01-24 16:30:26 +1100
commit8c80224ecb5194a5e2ed5f74f1c7f457202d21a3 (patch)
treea557a9524e402e8cd98da702ea805c1cf8d430bb /tests/unit/scheduler/test_weights.py
parent3d2800087ce38ff954c50e5a86916784682ed1bd (diff)
downloadoslo-8c80224ecb5194a5e2ed5f74f1c7f457202d21a3.tar.gz
oslo-8c80224ecb5194a5e2ed5f74f1c7f457202d21a3.tar.xz
oslo-8c80224ecb5194a5e2ed5f74f1c7f457202d21a3.zip
Replace direct use of testtools BaseTestCase.
Using the BaseTestCase across the tests in the tree lets us put in log fixtures and consistently handle mox and stubout. Part of blueprint grizzly-testtools. Change-Id: Iba7eb2c63b0c514009b2c28e5930b27726a147b0
Diffstat (limited to 'tests/unit/scheduler/test_weights.py')
-rw-r--r--tests/unit/scheduler/test_weights.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/unit/scheduler/test_weights.py b/tests/unit/scheduler/test_weights.py
index ca61c00..76c62ba 100644
--- a/tests/unit/scheduler/test_weights.py
+++ b/tests/unit/scheduler/test_weights.py
@@ -16,13 +16,12 @@
Tests For Scheduler weights.
"""
-import testtools
-
from openstack.common.scheduler import weight
from tests.unit import fakes
+from tests import utils
-class TestWeightHandler(testtools.TestCase):
+class TestWeightHandler(utils.BaseTestCase):
def test_get_all_classes(self):
namespace = "openstack.common.tests.fakes.weights"
handler = weight.BaseWeightHandler(weight.BaseWeigher, namespace)