From 60693cc590a149ffc2d6302d692d74482c1cfa69 Mon Sep 17 00:00:00 2001 From: Julien Laffaye Date: Mon, 8 Jul 2013 08:44:16 +0200 Subject: [PATCH] Add a comment to state why TestConn2 is interesting. --- client_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client_test.go b/client_test.go index 0291bdc..3ebb8cf 100644 --- a/client_test.go +++ b/client_test.go @@ -104,6 +104,7 @@ func TestConn(t *testing.T) { } } +// ftp.mozilla.org uses multiline 220 response func TestConn2(t *testing.T) { c, err := Connect("ftp.mozilla.org:21") if err != nil { @@ -119,4 +120,6 @@ func TestConn2(t *testing.T) { if err != nil { t.Error(err) } + + c.Quit() }