diff --git a/tests/integration/api_network_test.py b/tests/integration/api_network_test.py index 78d54e282..74dad6005 100644 --- a/tests/integration/api_network_test.py +++ b/tests/integration/api_network_test.py @@ -233,7 +233,7 @@ def test_create_with_ipv6_address(self): net_name, net_id = self.create_network( ipam=IPAMConfig( driver='default', - pool_configs=[IPAMPool(subnet="2001:389::1/64")], + pool_configs=[IPAMPool(subnet="2001:389::/64")], ), ) container = self.client.create_container( @@ -389,7 +389,7 @@ def test_connect_with_ipv6_address(self): driver='default', pool_configs=[ IPAMPool( - subnet="2001:389::1/64", iprange="2001:389::0/96", + subnet="2001:389::/64", iprange="2001:389::0/96", gateway="2001:389::ffff" ) ] @@ -455,7 +455,7 @@ def test_create_network_ipv6_enabled(self): driver='default', pool_configs=[ IPAMPool( - subnet="2001:389::1/64", iprange="2001:389::0/96", + subnet="2001:389::/64", iprange="2001:389::0/96", gateway="2001:389::ffff" ) ]