From b8b26d8e79fb3e90710d10cfc215eb1865809bcb Mon Sep 17 00:00:00 2001 From: Roman Khimov Date: Mon, 9 Sep 2019 11:25:58 +0300 Subject: [PATCH] core: fix 'implementation' misspell in test code Found in the Go report card. --- pkg/core/block_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/core/block_test.go b/pkg/core/block_test.go index b7b2bde09..3191e959d 100644 --- a/pkg/core/block_test.go +++ b/pkg/core/block_test.go @@ -176,7 +176,7 @@ func TestBinBlockDecodeEncode(t *testing.T) { func TestBlockSizeCalculation(t *testing.T) { // block taken from mainnet: 0006d3ff96e269f599eb1b5c5a527c218439e498dcc65b63794591bbcdc0516b // The Size in golang is given by counting the number of bytes of an object. (len(Bytes)) - // its implementation is different from the corresponding C# and python implentation. But the result should + // its implementation is different from the corresponding C# and python implementations. But the result should // should be the same.In this test we provide more details then necessary because in case of failure we can easily debug the // root cause of the size calculation missmatch.