Fix tempest breakage

The following change broke some tempest test:
https://review.openstack.org/#/c/311221/

Change-Id: Ic62cd7535f9c7de327e46ad4452c78566353f9f6
This commit is contained in:
Kobi Samoray 2016-05-03 19:22:49 +03:00
parent de6101ad59
commit 8bd3285870
3 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@
# This module inherents from resources module and enhances router functions # This module inherents from resources module and enhances router functions
# and block subnet's add_to/delete_from_router so it is more similar to CLI. # and block subnet's add_to/delete_from_router so it is more similar to CLI.
from tempest.services.network import resources as n_resources from tempest.scenario import network_resources as n_resources
DELETABLE_CLASS_DEF = """class %(cls_name)s(n_resources.%(cls_name)s): DELETABLE_CLASS_DEF = """class %(cls_name)s(n_resources.%(cls_name)s):

View File

@ -24,7 +24,7 @@ import testtools
from tempest import config from tempest import config
from tempest import exceptions from tempest import exceptions
from tempest.scenario import manager from tempest.scenario import manager
from tempest.services.network import resources as net_resources from tempest.scenario import network_resources as net_resources
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -25,7 +25,7 @@ from tempest.lib.common.utils import data_utils
from tempest import config from tempest import config
from tempest import exceptions from tempest import exceptions
from tempest.scenario import manager from tempest.scenario import manager
from tempest.services.network import resources as net_resources from tempest.scenario import network_resources as net_resources
from tempest import test from tempest import test
from vmware_nsx_tempest.services import load_balancer_v1_client as LBV1C from vmware_nsx_tempest.services import load_balancer_v1_client as LBV1C