From 53498f7dc933ae7a9d6510d90e52e01eb05bc03c Mon Sep 17 00:00:00 2001 From: Tal Liron Date: Wed, 1 Jun 2016 16:14:34 -0500 Subject: [PATCH] Support improved Node Cellar simple blueprint --- .../nodecellar_singlehost_test.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cosmo_tester/test_suites/test_simple_manager_blueprint/nodecellar_singlehost_test.py b/cosmo_tester/test_suites/test_simple_manager_blueprint/nodecellar_singlehost_test.py index b82b1dae4..a69de8d48 100644 --- a/cosmo_tester/test_suites/test_simple_manager_blueprint/nodecellar_singlehost_test.py +++ b/cosmo_tester/test_suites/test_simple_manager_blueprint/nodecellar_singlehost_test.py @@ -34,11 +34,12 @@ def get_public_ip(self, nodes_state): def get_inputs(self): return dict(self.access_credentials, - **{'host_ip': self.private_ip_address}) + **{'nodejs_host_ip': self.private_ip_address, + 'mongod_host_ip': self.private_ip_address}) @property def expected_nodes_count(self): - return 4 + return 5 @property def host_expected_runtime_properties(self): @@ -46,7 +47,7 @@ def host_expected_runtime_properties(self): @property def entrypoint_node_name(self): - return 'host' + return 'nodejs_host_ip' @property def entrypoint_property_name(self):