Commit 63256192 authored by Steven Allen's avatar Steven Allen
Browse files

fix buggy addr equal in test

parent 7eaeeaa9
...@@ -83,7 +83,7 @@ func TestHostAddrsFactory(t *testing.T) { ...@@ -83,7 +83,7 @@ func TestHostAddrsFactory(t *testing.T) {
if len(addrs) != 1 { if len(addrs) != 1 {
t.Fatalf("expected 1 addr, got %d", len(addrs)) t.Fatalf("expected 1 addr, got %d", len(addrs))
} }
if addrs[0] != maddr { if !addrs[0].Equal(maddr) {
t.Fatalf("expected %s, got %s", maddr.String(), addrs[0].String()) t.Fatalf("expected %s, got %s", maddr.String(), addrs[0].String())
} }
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment