diff --git a/irc_test.go b/irc_test.go index 1385fbb..0367ca2 100644 --- a/irc_test.go +++ b/irc_test.go @@ -86,6 +86,8 @@ func TestGetServerInfo(t *testing.T) { if i == RPL_ENDOFMOTD { res := GetServerInfo("irc.libera.chat:6667", "irc-go4240") con.SendPrivmsg(channel, fmt.Sprintf("Libera has %d users, %d channels, %d servers, %d invisible", res.Users, res.Channels, res.Servers, res.Invisible)) + res = GetServerInfo("irc.choopa.net:6667", "irc-go4240") + con.SendPrivmsg(channel, fmt.Sprintf("EFNet has %d users, %d channels, %d servers, %d invisible", res.Users, res.Channels, res.Servers, res.Invisible)) con.SendQuit("Scan Completed") } }