From f648594deb8dacfc529b6c802f1d2c7018c20937 Mon Sep 17 00:00:00 2001 From: Anirudha Bose Date: Wed, 8 Jul 2020 16:40:37 +0530 Subject: [PATCH] hdkeychain: Fix small wording issue in ChainCode() tests --- hdkeychain/extendedkey_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hdkeychain/extendedkey_test.go b/hdkeychain/extendedkey_test.go index 04c6673..0fe49f2 100644 --- a/hdkeychain/extendedkey_test.go +++ b/hdkeychain/extendedkey_test.go @@ -619,7 +619,7 @@ func TestExtendedKeyAPI(t *testing.T) { chainCode := key.ChainCode() if !bytes.Equal(chainCode, test.chainCode) { t.Errorf("ChainCode #%d (%s): want %v, got %v", i, - test.name, chainCode, test.chainCode) + test.name, test.chainCode, chainCode) continue }