summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Gorodnev <agorodnev@mirantis.com>2013-08-09 05:34:55 -0400
committerAlexander Gorodnev <agorodnev@mirantis.com>2013-08-09 05:34:55 -0400
commit097d2b7b3de6593a0aac8e82418c0dcadc299542 (patch)
tree8dc374ca8068b9825c664af136df47d0f68deadd
parentdfe30fbe2d530b435149b3fbe26984a196d5f807 (diff)
downloadoslo-context-097d2b7b3de6593a0aac8e82418c0dcadc299542.tar.gz
Replace using tests.utils with openstack.common.test
It is the first step to replace using tests.utils with openstack.common.test. All these tests don't use mock objects, stubs, config files and use only BaseTestCase class. Change-Id: I511816b5c9e6c5c34ebff199296ee4fc8b84c672 bp: common-unit-tests
-rw-r--r--tests/unit/test_context.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/test_context.py b/tests/unit/test_context.py
index 2f9a3de..ae79b31 100644
--- a/tests/unit/test_context.py
+++ b/tests/unit/test_context.py
@@ -16,10 +16,10 @@
# under the License.
from openstack.common import context
-from tests import utils
+from openstack.common import test
-class ContextTest(utils.BaseTestCase):
+class ContextTest(test.BaseTestCase):
def test_context(self):
ctx = context.RequestContext()