From 36d88d9ebc0aeccd8f5ccc8a102b0264e0bb3b10 Mon Sep 17 00:00:00 2001 From: "John C. Vernaleo" Date: Fri, 25 Mar 2016 09:27:01 -0400 Subject: [PATCH] Fix a test output for go1.6. --- bloom/merkleblock_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bloom/merkleblock_test.go b/bloom/merkleblock_test.go index 7467e97a..48bf513f 100644 --- a/bloom/merkleblock_test.go +++ b/bloom/merkleblock_test.go @@ -57,7 +57,7 @@ func TestMerkleBlock3(t *testing.T) { if !bytes.Equal(want, got.Bytes()) { t.Errorf("TestMerkleBlock3 failed merkle block comparison: "+ - "got %v want %v", got.Bytes, want) + "got %v want %v", got.Bytes(), want) return } }