aboutsummaryrefslogtreecommitdiffstats
path: root/sfc
diff options
context:
space:
mode:
author“Manuel Buil” <mbuil@suse.com>2017-03-13 18:56:31 +0100
committer“Manuel Buil” <mbuil@suse.com>2017-03-13 18:56:31 +0100
commitce203678d1a604996c312d44c8a236961efd3507 (patch)
tree3a2c9ae67b2259935c1aa21c2523065113a1589a /sfc
parentc2d0e7c1277ba5feb5fae774a05f6ad3210c3e3d (diff)
Bug fix: client and server not using shuffler
Client and server were not being created based on the topology shuffler and thus the topology was not followed Change-Id: I1d7228d2d75e4ecf57ff8eb1c4226b963b2b9dd4 Signed-off-by: “Manuel Buil” <mbuil@suse.com>
Diffstat (limited to 'sfc')
-rw-r--r--sfc/tests/functest/sfc_one_chain_two_service_functions_different_computes.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfc/tests/functest/sfc_one_chain_two_service_functions_different_computes.py b/sfc/tests/functest/sfc_one_chain_two_service_functions_different_computes.py
index 651962e3..88c3d5fb 100644
--- a/sfc/tests/functest/sfc_one_chain_two_service_functions_different_computes.py
+++ b/sfc/tests/functest/sfc_one_chain_two_service_functions_different_computes.py
@@ -110,11 +110,11 @@ def main():
test_utils.create_instance(
nova_client, CLIENT, COMMON_CONFIG.flavor,
- image_id, network_id, sg_id)
+ image_id, network_id, sg_id, av_zone=testTopology['client'])
srv_instance = test_utils.create_instance(
nova_client, SERVER, COMMON_CONFIG.flavor, image_id,
- network_id, sg_id)
+ network_id, sg_id, av_zone=testTopology['server'])
srv_prv_ip = srv_instance.networks.get(TESTCASE_CONFIG.net_name)[0]