diff options
author | Steven Pisarski <s.pisarski@cablelabs.com> | 2018-01-31 17:02:22 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-01-31 17:02:22 +0000 |
commit | 0a8985ce280a537d42677b64c5d9661302491785 (patch) | |
tree | 7b7f5460ea24f5d6be10d34800c5dbebb76c553b | |
parent | 101d99352632c4413a91b6a3978768dc76cdd6a0 (diff) | |
parent | a92b05c9a139ca78f486b0f31416d9453fb11f04 (diff) |
Merge "Changed invalid gateway IP to ensure fails with all OS configurations."
-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]) |