From 588a268192d56ab988ddbf7a7b2d48a3f9c5a319 Mon Sep 17 00:00:00 2001 From: Thomas Jager Date: Sun, 11 Nov 2012 10:51:02 +0100 Subject: [PATCH] Fix test --- irc_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irc_test.go b/irc_test.go index 0577d73..3ff6ac4 100644 --- a/irc_test.go +++ b/irc_test.go @@ -26,7 +26,7 @@ func TestConnection(t *testing.T) { func TestConnectionSSL(t *testing.T) { irccon := IRC("go-eventirc", "go-eventirc") irccon.VerboseCallbackHandler = true - irccon.UseSSL = true + irccon.UseTLS = true err := irccon.Connect("irc.freenode.net:7000") if err != nil { t.Fatal("Can't connect to freenode.")