From 99368c87bb2e4a93905759dcfc36046243062fd7 Mon Sep 17 00:00:00 2001 From: shangxdy Date: Mon, 27 Feb 2017 01:19:10 +0800 Subject: Add ip output in compute node After sync the latest heat-translator code from upstream, there is not ip output in compute node, it's necessary to add. JIRA:PARSER-121 Change-Id: Idb0126f9d2bcb6100be6083e2a661cc1cdbe0f27 Signed-off-by: shangxdy --- .../heat-translator/translator/hot/tests/test_translate_outputs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tosca2heat/heat-translator/translator/hot/tests/test_translate_outputs.py') diff --git a/tosca2heat/heat-translator/translator/hot/tests/test_translate_outputs.py b/tosca2heat/heat-translator/translator/hot/tests/test_translate_outputs.py index 955150e..12ea355 100644 --- a/tosca2heat/heat-translator/translator/hot/tests/test_translate_outputs.py +++ b/tosca2heat/heat-translator/translator/hot/tests/test_translate_outputs.py @@ -33,12 +33,12 @@ class ToscaTemplateOutputTest(TestCase): 'server, http://:3000', 'value': {'get_attr': - ['app_server', 'networks', 'private', 0]}}, + ['app_server', 'first_address']}}, 'mongodb_url': {'description': 'URL for the mongodb server.', 'value': {'get_attr': - ['mongo_server', 'networks', 'private', 0]}}} + ['mongo_server', 'first_address']}}} hot_translation_dict = \ toscaparser.utils.yamlparser.simple_parse(hot_translation) -- cgit 1.2.3-korg