From 8104cf5188695f158e3a82a4213303f5079d9ff8 Mon Sep 17 00:00:00 2001 From: Thane Thomson Date: Wed, 13 Apr 2022 13:33:32 -0400 Subject: [PATCH] types: remove extraneous call to voteWithoutExtension in test Signed-off-by: Thane Thomson --- types/block_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/block_test.go b/types/block_test.go index c18b2ef1e..97b12cdba 100644 --- a/types/block_test.go +++ b/types/block_test.go @@ -572,7 +572,7 @@ func TestCommitToVoteSet(t *testing.T) { for i := int32(0); int(i) < len(vals); i++ { vote1 := voteWithoutExtension(voteSet.GetByIndex(i)) - vote2 := voteWithoutExtension(voteSet2.GetByIndex(i)) + vote2 := voteSet2.GetByIndex(i) vote3 := commit.GetVote(i) vote1bz, err := vote1.ToProto().Marshal()