summaryrefslogtreecommitdiffstats
path: root/tests/unit/test_cliutils.py
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
commit983382c5b9d64d902eb570780df341ea3aa9a83e (patch)
treea76c8aad6edb5a5606fa11a8da80853e3985e19e /tests/unit/test_cliutils.py
parent0eeeb6f57a01adc6dc1e17339ba6591d0e2dee1b (diff)
parent827547a0b3da411441bf691ddbc94867001a3311 (diff)
downloadoslo-983382c5b9d64d902eb570780df341ea3aa9a83e.tar.gz
oslo-983382c5b9d64d902eb570780df341ea3aa9a83e.tar.xz
oslo-983382c5b9d64d902eb570780df341ea3aa9a83e.zip
Merge "Use testtools as test base class."
Diffstat (limited to 'tests/unit/test_cliutils.py')
-rw-r--r--tests/unit/test_cliutils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/test_cliutils.py b/tests/unit/test_cliutils.py
index 49339a0..c9ab0f5 100644
--- a/tests/unit/test_cliutils.py
+++ b/tests/unit/test_cliutils.py
@@ -14,12 +14,12 @@
# License for the specific language governing permissions and limitations
# under the License.
-import unittest
+import testtools
from openstack.common.cliutils import *
-class ValidateArgsTest(unittest.TestCase):
+class ValidateArgsTest(testtools.TestCase):
def test_lambda_no_args(self):
validate_args(lambda: None)