From f1fe9d99a4dcd31690c24f023d448d9f3154a7d7 Mon Sep 17 00:00:00 2001 From: Chris Rhodes Date: Mon, 18 Feb 2013 17:02:58 -0800 Subject: [PATCH] Fix test. --- client/handlers_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/handlers_test.go b/client/handlers_test.go index 556ac76..147f7dd 100644 --- a/client/handlers_test.go +++ b/client/handlers_test.go @@ -147,7 +147,7 @@ func TestCTCP(t *testing.T) { c.h_CTCP(parseLine(":blah!moo@cows.com PRIVMSG test :\001VERSION\001")) // Expect a version reply - s.nc.Expect("NOTICE blah :\001VERSION powered by goirc...\001") + s.nc.Expect("NOTICE blah :\001VERSION Powered by GoIRC\001") // Call handler with CTCP PING c.h_CTCP(parseLine(":blah!moo@cows.com PRIVMSG test :\001PING 1234567890\001"))