hdkeychain: Fix small wording issue in ChainCode() tests

This commit is contained in:
Anirudha Bose 2020-07-08 16:40:37 +05:30 committed by John C. Vernaleo
parent 6c6f3fd3b7
commit f648594deb

View file

@ -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
}