From 29995868aba3501ed718da11e22e4966a23d6d49 Mon Sep 17 00:00:00 2001 From: Vladimir Khlyunev Date: Fri, 10 Mar 2017 15:39:23 +0400 Subject: [PATCH] Fix legacy call for get_network_pool method ip_range is used wrong, we need cidr of the network Change-Id: Ic6acced8228e325ada1090fe218ef7bf9a88bfef --- fuelweb_test/models/fuel_web_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuelweb_test/models/fuel_web_client.py b/fuelweb_test/models/fuel_web_client.py index 11d012ba5..a358181d2 100644 --- a/fuelweb_test/models/fuel_web_client.py +++ b/fuelweb_test/models/fuel_web_client.py @@ -3496,7 +3496,7 @@ class FuelWebClient30(FuelWebClient29): net_pool = group.get_network_pool(name=pool_name) _net_pool = { "gateway": net_pool.gateway, - "network": net_pool.ip_range + "network": net_pool.net } return _net_pool