diff options
author | Manuel Buil <mbuil@suse.com> | 2018-08-30 07:33:53 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-08-30 07:33:53 +0000 |
commit | c0afe0534d46255cf52b85d152d0adc1c4487d83 (patch) | |
tree | 4710a627fdc01acf9b271db05b5de9371f4e2cc0 | |
parent | 395db39a951dd60819fabfdc4c74bcd9ca1b19e4 (diff) | |
parent | 1aa97f4a6fa2aada3b63c3616c149484052e0e33 (diff) |
Merge "Bug fix: Bad usage of positional argument"
-rw-r--r-- | sfc/tests/functest/sfc_parent_function.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sfc/tests/functest/sfc_parent_function.py b/sfc/tests/functest/sfc_parent_function.py index 9b8ccee2..6af8e8ec 100644 --- a/sfc/tests/functest/sfc_parent_function.py +++ b/sfc/tests/functest/sfc_parent_function.py @@ -170,13 +170,13 @@ class SfcCommonTestCase(object): openstack_sfc.create_instance(SERVER, COMMON_CONFIG.flavor, self.image_creator, self.network, self.sg, - av_zone=self.test_topology['server']) + self.test_topology['server']) self.client_instance, self.client_creator = \ openstack_sfc.create_instance(CLIENT, COMMON_CONFIG.flavor, self.image_creator, self.network, self.sg, - av_zone=self.test_topology['client']) + self.test_topology['client']) logger.info('This test is run with the topology {0}'.format( self.test_topology['id'])) logger.info('Topology description: {0}'.format( |