Skip to content
Snippets Groups Projects
Commit 18449a22 authored by lingyongxu's avatar lingyongxu
Browse files

Remove unnecessary setUp function in testcase

In testcase, setUp will be called automatically. This patch used to
remove setUp functions that do nothing. Besides, it will keep code clean.

Change-Id: I60e368dc066af30ce2e53bf7e4cc7bba69387cd8
parent f8c40a45
No related branches found
No related tags found
No related merge requests found
......@@ -36,9 +36,6 @@ kd = imp.load_source('kolla_docker', kolla_docker_file)
class ModuleArgsTest(base.BaseTestCase):
def setUp(self):
super(ModuleArgsTest, self).setUp()
def test_module_args(self):
argument_spec = dict(
common_options=dict(required=False, type='dict', default=dict()),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment