summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-01-28 07:55:57 +0000
committerGerrit Code Review <review@openstack.org>2013-01-28 07:55:57 +0000
commit40ae87bc9f88830fa9c784226747315f24e2e4f8 (patch)
treeca20c431b84d2a630eed52d8e0d77280b25fec63
parent982c7ab87997e6cfd0e47b283db3c46452a3ab8e (diff)
parentae01c2c1e5ca693193aed12b66fb78e9d613faa7 (diff)
downloadoslo-context-40ae87bc9f88830fa9c784226747315f24e2e4f8.tar.gz
Merge "Use testtools as test base class."
-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 e946dc7..3437475 100644
--- a/tests/unit/test_context.py
+++ b/tests/unit/test_context.py
@@ -15,12 +15,12 @@
# License for the specific language governing permissions and limitations
# under the License.
-import unittest
+import testtools
from openstack.common import context
-class ContextTest(unittest.TestCase):
+class ContextTest(testtools.TestCase):
def test_context(self):
ctx = context.RequestContext()