diff --git a/app/test/integration_test.go b/app/test/integration_test.go index c64546b48e..7ee8e08d2d 100644 --- a/app/test/integration_test.go +++ b/app/test/integration_test.go @@ -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) } }