diff --git a/internal/state/execution_test.go b/internal/state/execution_test.go index eadb62abc..1c788115b 100644 --- a/internal/state/execution_test.go +++ b/internal/state/execution_test.go @@ -280,7 +280,14 @@ func TestProcessProposal(t *testing.T) { pk, err := privVal.GetPubKey(ctx) require.NoError(t, err) addr := pk.Address() - voteInfos = append(voteInfos, abci.VoteInfo{SignedLastBlock: true, Validator: abci.Validator{Address: addr, Power: 1000}}) + voteInfos = append(voteInfos, + abci.VoteInfo{ + SignedLastBlock: true, + Validator: abci.Validator{ + Address: addr, + Power: 1000, + }, + }) require.NoError(t, err) lastCommitSig = append(lastCommitSig, vote.CommitSig()) }