Remove config import unused

This patch removes config import unused and also cleanup
import.

Change-Id: Ibf2d2b17906805a4a52ca4dc82542a8007799635
This commit is contained in:
Nguyen Phuong An 2016-08-26 17:34:52 +07:00
parent 5e030dad31
commit b4a3dbec04
3 changed files with 2 additions and 12 deletions

View File

@ -13,15 +13,12 @@
# License for the specific language governing permissions and limitations
# under the License.
from tempest import config
from tempest.lib.common.utils import data_utils
from tempest.lib import exceptions as ex
from tempest import test
from neutron_lbaas.tests.tempest.v2.api import base
CONF = config.CONF
class ListenersTestJSON(base.BaseTestCase):

View File

@ -14,7 +14,6 @@
# License for the specific language governing permissions and limitations
# under the License.
from tempest import config
from tempest.lib.common.utils import data_utils
from tempest.lib.common.utils import test_utils
from tempest.lib import exceptions as ex
@ -23,9 +22,6 @@ from tempest import test
from neutron_lbaas.tests.tempest.v2.api import base
CONF = config.CONF
class LoadBalancersTestAdmin(base.BaseAdminTestCase):
"""

View File

@ -13,16 +13,13 @@
# License for the specific language governing permissions and limitations
# under the License.
from netaddr import IPAddress
from tempest import config
import netaddr
from tempest.lib.common.utils import data_utils
from tempest.lib import exceptions as ex
from tempest import test
from neutron_lbaas.tests.tempest.v2.api import base
CONF = config.CONF
class LoadBalancersTestJSON(base.BaseTestCase):
@ -181,7 +178,7 @@ class LoadBalancersTestJSON(base.BaseTestCase):
vip_subnet_id=self.subnet['id'])
self.addCleanup(self._delete_load_balancer, load_balancer['id'])
load_balancer_ip_initial = load_balancer['vip_address']
ip = IPAddress(load_balancer_ip_initial)
ip = netaddr.IPAddress(load_balancer_ip_initial)
self.assertEqual(ip.version, 4)
load_balancer = self.load_balancers_client.get_load_balancer(
load_balancer['id'])