diff options
author | spisarski <s.pisarski@cablelabs.com> | 2018-01-30 12:30:56 -0700 |
---|---|---|
committer | spisarski <s.pisarski@cablelabs.com> | 2018-01-31 10:01:19 -0700 |
commit | a92b05c9a139ca78f486b0f31416d9453fb11f04 (patch) | |
tree | 251914686011b27dac137cc00a4e9478ea673010 | |
parent | 0cb9752f2cafb4abc7a5df969becb86ce34d6aa7 (diff) |
Changed invalid gateway IP to ensure fails with all OS
configurations.
Change-Id: I35374ea5fa79974c43c2a474e43ff275b26dfc02
Signed-off-by: spisarski <s.pisarski@cablelabs.com>
-rw-r--r-- | snaps/openstack/utils/tests/neutron_utils_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/snaps/openstack/utils/tests/neutron_utils_tests.py b/snaps/openstack/utils/tests/neutron_utils_tests.py index 38faf71..bc7491e 100644 --- a/snaps/openstack/utils/tests/neutron_utils_tests.py +++ b/snaps/openstack/utils/tests/neutron_utils_tests.py @@ -455,7 +455,7 @@ class NeutronUtilsIPv6Tests(OSComponentTestCase): """ sub_setting = SubnetConfig( name=self.guid + '-subnet', cidr='1:1::/48', ip_version=6, - gateway_ip='1:2::1') + gateway_ip='192.168.0.1') self.network_settings = NetworkConfig( name=self.guid + '-net', subnet_settings=[sub_setting]) |