Skip to content

Commit

Permalink
Merge pull request moby#47111 from robmry/fix_TestAddRemoveInterface
Browse files Browse the repository at this point in the history
Fix libnetwork/osl test TestAddRemoveInterface
  • Loading branch information
thaJeztah authored Jan 19, 2024
2 parents d35e923 + c72e458 commit 17d8044
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libnetwork/osl/sandbox_linux_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func newInfo(t *testing.T, hnd *netlink.Handle) (*Namespace, error) {
}
addr.IP = ip4

ip6, addrv6, err := net.ParseCIDR("fe80::2/64")
ip6, addrv6, err := net.ParseCIDR("fdac:97b4:dbcc::2/64")
if err != nil {
return nil, err
}
Expand Down Expand Up @@ -116,7 +116,7 @@ func newInfo(t *testing.T, hnd *netlink.Handle) (*Namespace, error) {
return &Namespace{
iFaces: []*Interface{intf1, intf2, intf3},
gw: net.ParseIP("192.168.1.1"),
gwv6: net.ParseIP("fe80::1"),
gwv6: net.ParseIP("fdac:97b4:dbcc::1/64"),
}, nil
}

Expand Down

0 comments on commit 17d8044

Please sign in to comment.