summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-01-28 07:57:04 +0000
committerGerrit Code Review <review@openstack.org>2013-01-28 07:57:04 +0000
commit224ce632e9e519bae109ba51e17fe0754558e0f5 (patch)
tree1e9833c4db5b580abaa9917dccdc14429f25a023
parent40ae87bc9f88830fa9c784226747315f24e2e4f8 (diff)
parent9d9704f631156e01d55d1d1217a41ab3704bdc03 (diff)
downloadoslo-context-224ce632e9e519bae109ba51e17fe0754558e0f5.tar.gz
Merge "Replace direct use of testtools BaseTestCase."
-rw-r--r--tests/unit/test_context.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/unit/test_context.py b/tests/unit/test_context.py
index 3437475..87c3d60 100644
--- a/tests/unit/test_context.py
+++ b/tests/unit/test_context.py
@@ -15,12 +15,11 @@
# License for the specific language governing permissions and limitations
# under the License.
-import testtools
-
from openstack.common import context
+from tests import utils
-class ContextTest(testtools.TestCase):
+class ContextTest(utils.BaseTestCase):
def test_context(self):
ctx = context.RequestContext()