Skip to content

Commit

Permalink
chore: remove static check for deprecated method
Browse files Browse the repository at this point in the history
  • Loading branch information
rach-id committed Nov 27, 2024
1 parent b69cac1 commit d4d9237
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/test/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ func (s *IntegrationTestSuite) TestIsEmptyBlock() {
for _, h := range emptyHeights {
blockRes, err := s.cctx.Client.Block(s.cctx.GoContext(), &h)
require.NoError(t, err)
require.True(t, app.IsEmptyBlock(blockRes.Block.Data, blockRes.Block.Header.Version.App))
require.True(t, app.IsEmptyBlock(blockRes.Block.Data, blockRes.Block.Header.Version.App)) //nolint:staticcheck
ExtendBlockTest(t, blockRes.Block)
}
}
Expand Down

0 comments on commit d4d9237

Please sign in to comment.