Skip to content

Commit

Permalink
test: remove empty pagination check
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler authored and tyler committed Aug 30, 2022
1 parent 307622d commit 15f04f7
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions x/ecocredit/client/testsuite/grpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,6 @@ func (s *IntegrationTestSuite) TestQueryProjects() {
require.Len(res.Projects, 1)
require.NotEmpty(res.Pagination)
require.NotEmpty(res.Pagination.Total)
} else {
require.Empty(res.Pagination)
}
})
}
Expand Down Expand Up @@ -198,8 +196,6 @@ func (s *IntegrationTestSuite) TestQueryProjectsByClass() {
require.Len(res.Projects, 1)
require.NotEmpty(res.Pagination)
require.NotEmpty(res.Pagination.Total)
} else {
require.Empty(res.Pagination)
}
})
}
Expand Down Expand Up @@ -255,8 +251,6 @@ func (s *IntegrationTestSuite) TestQueryProjectsByReferenceID() {
require.Len(res.Projects, 1)
require.NotEmpty(res.Pagination)
require.NotEmpty(res.Pagination.Total)
} else {
require.Empty(res.Pagination)
}
})
}
Expand Down

0 comments on commit 15f04f7

Please sign in to comment.