From f5770168650a2c84f89e4996fcda8426844342fd Mon Sep 17 00:00:00 2001 From: mpenick Date: Sat, 6 Sep 2014 17:11:18 -0700 Subject: [PATCH] Fixed control connection no rpc_address int. test --- test/integration_tests/src/control_connection.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration_tests/src/control_connection.cpp b/test/integration_tests/src/control_connection.cpp index 0190bce2a..e513abb1c 100644 --- a/test/integration_tests/src/control_connection.cpp +++ b/test/integration_tests/src/control_connection.cpp @@ -263,7 +263,7 @@ BOOST_AUTO_TEST_CASE(test_node_discovery_no_local_rows) BOOST_AUTO_TEST_CASE(test_node_discovery_no_rpc_addresss) { - boost::scoped_ptr log_data(new test_utils::LogData("No rpc_address for host 127.0.0.2 in system.peers on 127.0.0.1. Ignoring this entry.")); + boost::scoped_ptr log_data(new test_utils::LogData("No rpc_address for host 127.0.0.3 in system.peers on 127.0.0.1. Ignoring this entry.")); { test_utils::CassClusterPtr cluster(cass_cluster_new()); @@ -289,7 +289,7 @@ BOOST_AUTO_TEST_CASE(test_node_discovery_no_rpc_addresss) test_utils::CassSessionPtr session(test_utils::create_session(cluster.get())); // This should only contain 2 address because one peer is ignored - check_for_live_hosts(session, build_ip_range(conf.ip_prefix(), 2, 3)); + check_for_live_hosts(session, build_ip_range(conf.ip_prefix(), 1, 2)); } BOOST_CHECK(log_data->message_count > 0);