summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2014-04-16 17:59:55 +0000
committerGerrit Code Review <review@openstack.org>2014-04-16 17:59:55 +0000
commit357208bec5d75bcb143dc0b3b4566b2a00929b64 (patch)
treea51cd4d7d44aa564d6c991105d0fc2cb0cf08da7
parent13d6d6308a17adfb5fe202e1300da3f9d3e73e44 (diff)
parent2280d17fc2c6c144c1490617811b4665d5d41545 (diff)
downloadoslo-context-357208bec5d75bcb143dc0b3b4566b2a00929b64.tar.gz
Merge "Use oslotest instead of common test module"
-rw-r--r--tests/unit/test_context.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/unit/test_context.py b/tests/unit/test_context.py
index 47cb003..9fedff7 100644
--- a/tests/unit/test_context.py
+++ b/tests/unit/test_context.py
@@ -13,11 +13,12 @@
# License for the specific language governing permissions and limitations
# under the License.
+from oslotest import base as test_base
+
from openstack.common import context
-from openstack.common import test
-class ContextTest(test.BaseTestCase):
+class ContextTest(test_base.BaseTestCase):
def test_context(self):
ctx = context.RequestContext()