Commit fec840a8 authored by Eldin Hadzic's avatar Eldin Hadzic

Increase code coverage

parent d0bf3e16
......@@ -85,10 +85,12 @@ func TestListenerAddrEqual(t *testing.T) {
}{
{ln1, ":1234", false},
{ln1, "0.0.0.0:1234", false},
{ln1, "0.0.0.0", false},
{ln1, ":" + ln1port + "", true},
{ln1, "0.0.0.0:" + ln1port + "", true},
{ln2, "127.0.0.1:1234", false},
{ln2, ":" + ln2port + "", false},
{ln2, "127.0.0.1:1234", false},
{ln2, "127.0.0.1", false},
{ln2, "127.0.0.1:" + ln2port + "", true},
} {
if got, want := listenerAddrEqual(test.ln, test.addr), test.expect; got != want {
......
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