From 0e2ae6c9d3987e5757148eac48443b698240b653 Mon Sep 17 00:00:00 2001 From: Derek Collison Date: Tue, 13 Nov 2012 19:25:51 -0800 Subject: [PATCH] Fixed bad comments --- server/client_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/client_test.go b/server/client_test.go index ce58d60f..c2ff6efd 100644 --- a/server/client_test.go +++ b/server/client_test.go @@ -238,7 +238,7 @@ func TestClientUnSub(t *testing.T) { num := 1 - // Queue SUB/PUB + // SUB/PUB subs := []byte("SUB foo 1\r\nSUB foo 2\r\n") unsub := []byte("UNSUB 1\r\n") pub := []byte("PUB foo bar 5\r\nhello\r\n") @@ -276,7 +276,7 @@ func TestClientUnSubMax(t *testing.T) { num := 10 exp := 5 - // Queue SUB/PUB + // SUB/PUB subs := []byte("SUB foo 1\r\n") unsub := []byte("UNSUB 1 5\r\n") pub := []byte("PUB foo bar 5\r\nhello\r\n")