diff options
author | Manuel Buil <mbuil@suse.com> | 2017-06-29 09:08:36 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-06-29 09:08:37 +0000 |
commit | bba8bc08fbcbf5f72f40ea6133dbb61263215501 (patch) | |
tree | f7aae06b7ccd4274f2c5a2d54bef6c4ab857b353 | |
parent | a40da17faa6c0d2c7d2dcf43076c6a5b8491df4a (diff) | |
parent | 1e27e22e768e382417bfac7776d1694722634663 (diff) |
Merge "Fix wrong logging of the server-instance ip"
-rw-r--r-- | sfc/tests/functest/sfc_one_chain_two_service_functions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfc/tests/functest/sfc_one_chain_two_service_functions.py b/sfc/tests/functest/sfc_one_chain_two_service_functions.py index c65ed8a9..875eff9a 100644 --- a/sfc/tests/functest/sfc_one_chain_two_service_functions.py +++ b/sfc/tests/functest/sfc_one_chain_two_service_functions.py @@ -126,7 +126,7 @@ def main(): client_ip = client_instance.networks.get(TESTCASE_CONFIG.net_name)[0] logger.info("Client instance received private ip [{}]".format(client_ip)) server_ip = server_instance.networks.get(TESTCASE_CONFIG.net_name)[0] - logger.info("Server instance received private ip [{}]".format(client_ip)) + logger.info("Server instance received private ip [{}]".format(server_ip)) tosca_file = os.path.join(COMMON_CONFIG.sfc_test_dir, COMMON_CONFIG.vnfd_dir, |