mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
fix createTestNetwork bug
Signed-off-by: Bao Yonglei <baoyonglei@huawei.com>
This commit is contained in:
parent
31404b26aa
commit
8dc3f3be47
1 changed files with 12 additions and 9 deletions
|
@ -219,15 +219,18 @@ func TestBridge(t *testing.T) {
|
|||
}
|
||||
|
||||
netOption := options.Generic{
|
||||
"BridgeName": bridgeName,
|
||||
"AddressIPv4": subnet,
|
||||
"FixedCIDR": cidr,
|
||||
"FixedCIDRv6": cidrv6,
|
||||
"EnableIPv6": true,
|
||||
"EnableIPTables": true,
|
||||
"EnableIPMasquerade": true,
|
||||
"EnableICC": true,
|
||||
"AllowNonDefaultBridge": true}
|
||||
netlabel.GenericData: options.Generic{
|
||||
"BridgeName": bridgeName,
|
||||
"AddressIPv4": subnet,
|
||||
"FixedCIDR": cidr,
|
||||
"FixedCIDRv6": cidrv6,
|
||||
"EnableIPv6": true,
|
||||
"EnableIPTables": true,
|
||||
"EnableIPMasquerade": true,
|
||||
"EnableICC": true,
|
||||
"AllowNonDefaultBridge": true,
|
||||
},
|
||||
}
|
||||
|
||||
network, err := createTestNetwork(bridgeNetType, "testnetwork", option, netOption)
|
||||
if err != nil {
|
||||
|
|
Loading…
Add table
Reference in a new issue