diff options
Diffstat (limited to 'tests/unit/test_cliutils.py')
-rw-r--r-- | tests/unit/test_cliutils.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/unit/test_cliutils.py b/tests/unit/test_cliutils.py index c9ab0f5..08bd97b 100644 --- a/tests/unit/test_cliutils.py +++ b/tests/unit/test_cliutils.py @@ -14,12 +14,11 @@ # License for the specific language governing permissions and limitations # under the License. -import testtools - from openstack.common.cliutils import * +from tests import utils -class ValidateArgsTest(testtools.TestCase): +class ValidateArgsTest(utils.BaseTestCase): def test_lambda_no_args(self): validate_args(lambda: None) |