commit | 2c1002eccbff9847339920227f5663aa7c925212 | [log] [tgz] |
---|---|---|
author | Jenkins <jenkins@review.openstack.org> | Fri Feb 17 02:10:00 2017 +0000 |
committer | Gerrit Code Review <review@openstack.org> | Fri Feb 17 02:10:00 2017 +0000 |
tree | a3ee90f78081c0bd08aeb48fbe268bea21e8f09c | |
parent | 3f476151393f7b9de066e1c38b9deb84a700e867 [diff] | |
parent | a40fc6fc8f65567cb5d3c401f95fae5324716e1e [diff] |
Merge "Remove unused neutron_available"
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')