Fix typo in cryptobyte_test.go

This commit is contained in:
Philipp 2018-11-26 14:38:01 +01:00 коммит произвёл GitHub
Родитель 9eb0be3963
Коммит 21a7a75192
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -421,7 +421,7 @@ func TestFixedBuilderLengthPrefixed(t *testing.T) {
b.AddBytes(inner)
})
if got := b.BytesOrPanic(); len(got) != bufCap {
t.Errorf("Expected output lenght to be %d, got %d", bufCap, len(got))
t.Errorf("Expected output length to be %d, got %d", bufCap, len(got))
}
}