1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Fix links test to not accept bridge

Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@crosbymichael.com> (github: crosbymichael)
This commit is contained in:
Michael Crosby 2014-01-31 12:07:51 -08:00
parent a11bee44d7
commit 50fea89782

View file

@ -30,7 +30,7 @@ func TestLinkNew(t *testing.T) {
to := newMockLinkContainer(toID, "172.0.17.3")
link, err := NewLink(to, from, "/db/docker", "172.0.17.1")
link, err := NewLink(to, from, "/db/docker", nil)
if err != nil {
t.Fatal(err)
}
@ -50,9 +50,6 @@ func TestLinkNew(t *testing.T) {
if link.ChildIP != "172.0.17.2" {
t.Fail()
}
if link.BridgeInterface != "172.0.17.1" {
t.Fail()
}
for _, p := range link.Ports {
if p != Port("6379/tcp") {
t.Fail()
@ -75,7 +72,7 @@ func TestLinkEnv(t *testing.T) {
to := newMockLinkContainer(toID, "172.0.17.3")
link, err := NewLink(to, from, "/db/docker", "172.0.17.1")
link, err := NewLink(to, from, "/db/docker", nil)
if err != nil {
t.Fatal(err)
}