From e699ca0bef5b9ec3d249cdc4033bd2602a10d712 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Fri, 10 May 2013 15:39:37 -0500 Subject: [PATCH] Cleanup a few comments. --- msggetdata_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/msggetdata_test.go b/msggetdata_test.go index f9e00b10..bfa31e20 100644 --- a/msggetdata_test.go +++ b/msggetdata_test.go @@ -268,12 +268,12 @@ func TestGetDataWireErrors(t *testing.T) { writeErr error // Expected write error readErr error // Expected read error }{ - //// Latest protocol version with intentional read/write errors. - //// Force error in inventory vector count + // Latest protocol version with intentional read/write errors. + // Force error in inventory vector count {baseGetData, baseGetDataEncoded, pver, 0, io.ErrShortWrite, io.EOF}, - //// Force error in inventory list. + // Force error in inventory list. {baseGetData, baseGetDataEncoded, pver, 1, io.ErrShortWrite, io.EOF}, - //// Force error with greater than max inventory vectors. + // Force error with greater than max inventory vectors. {maxGetData, maxGetDataEncoded, pver, 3, btcwireErr, btcwireErr}, }