From fbb57451a09a0492d605fda327801d6ff13dd1d5 Mon Sep 17 00:00:00 2001 From: William Banfield Date: Wed, 23 Feb 2022 11:16:38 -0500 Subject: [PATCH] legibility for struct in execution_test.go --- internal/state/execution_test.go | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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()) }