Skip to content

Commit

Permalink
chore: fixed linting
Browse files Browse the repository at this point in the history
  • Loading branch information
freak12techno committed Jul 3, 2024
1 parent 6a83d83 commit ce1f7a9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pkg/fetchers/cosmos/proposals_v1beta1_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ func TestProposalsV1beta1Success(t *testing.T) {
context.Background(),
)

require.Nil(t, err) //nolint:testifylint //disabled
require.Nil(t, err)
require.Zero(t, height)
require.Len(t, proposals, 25)
}
8 changes: 4 additions & 4 deletions pkg/fetchers/cosmos/vote_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ func TestVoteOk(t *testing.T) {
context.Background(),
)

require.Nil(t, err) //nolint:testifylint //disabled
require.Nil(t, err)
require.Zero(t, height)
require.NotNil(t, vote)
require.Equal(t, types.VoteOptions{
Expand Down Expand Up @@ -174,7 +174,7 @@ func TestVoteOkUnknown(t *testing.T) {
context.Background(),
)

require.Nil(t, err) //nolint:testifylint //disabled
require.Nil(t, err)
require.Zero(t, height)
require.NotNil(t, vote)
require.Equal(t, types.VoteOptions{
Expand Down Expand Up @@ -209,7 +209,7 @@ func TestVoteOkOld(t *testing.T) {
context.Background(),
)

require.Nil(t, err) //nolint:testifylint //disabled
require.Nil(t, err)
require.Zero(t, height)
require.NotNil(t, vote)
require.Equal(t, types.VoteOptions{
Expand Down Expand Up @@ -244,7 +244,7 @@ func TestVoteOkOldUnknown(t *testing.T) {
context.Background(),
)

require.Nil(t, err) //nolint:testifylint //disabled
require.Nil(t, err)
require.Zero(t, height)
require.NotNil(t, vote)
require.Equal(t, types.VoteOptions{
Expand Down

0 comments on commit ce1f7a9

Please sign in to comment.