commit | a40fc6fc8f65567cb5d3c401f95fae5324716e1e | [log] [tgz] |
---|---|---|
author | zhufl <zhu.fanglei@zte.com.cn> | Wed Feb 15 17:51:34 2017 +0800 |
committer | zhufl <zhu.fanglei@zte.com.cn> | Wed Feb 15 17:51:34 2017 +0800 |
tree | 1655a64a345b6f7b9788a59485225afc7cd74e13 | |
parent | ee84e3998b0e5688d1681499a96a23d8788a9375 [diff] |
Remove unused neutron_available This is to remove unused neutron_available in resource_setup. Change-Id: I7e74311eb33877fd326d6c688dcc1e7ec380c5ff
diff --git a/tempest/api/compute/security_groups/test_security_group_rules.py b/tempest/api/compute/security_groups/test_security_group_rules.py index 7658848..b82fa3b 100644 --- a/tempest/api/compute/security_groups/test_security_group_rules.py +++ b/tempest/api/compute/security_groups/test_security_group_rules.py
@@ -31,7 +31,6 @@ @classmethod def resource_setup(cls): super(SecurityGroupRulesTestJSON, cls).resource_setup() - cls.neutron_available = CONF.service_available.neutron cls.ip_protocol = 'tcp' cls.from_port = 22 cls.to_port = 22
diff --git a/tempest/api/compute/security_groups/test_security_groups_negative.py b/tempest/api/compute/security_groups/test_security_groups_negative.py index ad18861..48bb1b6 100644 --- a/tempest/api/compute/security_groups/test_security_groups_negative.py +++ b/tempest/api/compute/security_groups/test_security_groups_negative.py
@@ -32,11 +32,6 @@ super(SecurityGroupsNegativeTestJSON, cls).setup_clients() cls.client = cls.security_groups_client - @classmethod - def resource_setup(cls): - super(SecurityGroupsNegativeTestJSON, cls).resource_setup() - cls.neutron_available = CONF.service_available.neutron - @test.attr(type=['negative']) @decorators.idempotent_id('673eaec1-9b3e-48ed-bdf1-2786c1b9661c') @test.services('network')