diff --git a/tests/unit/modules/boto_secgroup_test.py b/tests/unit/modules/boto_secgroup_test.py index d9d02f4839..f644ccce5d 100644 --- a/tests/unit/modules/boto_secgroup_test.py +++ b/tests/unit/modules/boto_secgroup_test.py @@ -60,7 +60,7 @@ def _random_group_name(): @skipIf(NO_MOCK, NO_MOCK_REASON) @skipIf(HAS_BOTO is False, 'The boto module must be installed.') @skipIf(HAS_MOTO is False, 'The moto module must be installed.') -class BotoSecgroupTest(TestCase): +class BotoSecgroupTestCase(TestCase): ''' TestCase for salt.modules.boto_secgroup module ''' @@ -287,4 +287,4 @@ class BotoSecgroupTest(TestCase): if __name__ == '__main__': from integration import run_tests - run_tests(BotoSecgroupTest) + run_tests(BotoSecgroupTestCase, needs_daemon=False) diff --git a/tests/unit/modules/boto_vpc_test.py b/tests/unit/modules/boto_vpc_test.py index 92672dd08c..642e86461d 100644 --- a/tests/unit/modules/boto_vpc_test.py +++ b/tests/unit/modules/boto_vpc_test.py @@ -43,7 +43,7 @@ conn_parameters = {'region': region, 'key': access_key, 'keyid': secret_key, 'pr @skipIf(NO_MOCK, NO_MOCK_REASON) @skipIf(HAS_BOTO is False, 'The boto module must be installed.') @skipIf(HAS_MOTO is False, 'The moto module must be installed.') -class BotoVpcTest(TestCase): +class BotoVpcTestCase(TestCase): ''' TestCase for salt.modules.boto_vpc module ''' @@ -104,4 +104,4 @@ class BotoVpcTest(TestCase): if __name__ == '__main__': from integration import run_tests - run_tests(BotoVpcTest) + run_tests(BotoVpcTestCase, needs_daemon=False)