Skip to content
This repository has been archived by the owner on Jan 31, 2025. It is now read-only.

Commit

Permalink
Merge branch 'main' into terpay/escrow-address-string
Browse files Browse the repository at this point in the history
  • Loading branch information
davidterpay committed Nov 27, 2023
2 parents 0f8c6f8 + f7dfbda commit a45de07
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/integration/block_sdk_suite.go
Original file line number Diff line number Diff line change
Expand Up @@ -1283,7 +1283,7 @@ func (s *IntegrationTestSuite) TestNetwork() {
return
default:
height, err := s.chain.(*cosmos.CosmosChain).Height(context.Background())
require.NoError(s.T(), err)
s.NoError(err)
WaitForHeight(s.T(), s.chain.(*cosmos.CosmosChain), height+1)

s.T().Logf("height: %d", height+1)
Expand All @@ -1308,7 +1308,7 @@ func (s *IntegrationTestSuite) TestNetwork() {
return
default:
height, err := s.chain.(*cosmos.CosmosChain).Height(context.Background())
require.NoError(s.T(), err)
s.NoError(err)
WaitForHeight(s.T(), s.chain.(*cosmos.CosmosChain), height+1)

s.T().Logf("height: %d", height+1)
Expand All @@ -1332,7 +1332,7 @@ func (s *IntegrationTestSuite) TestNetwork() {
return
default:
height, err := s.chain.(*cosmos.CosmosChain).Height(context.Background())
require.NoError(s.T(), err)
s.NoError(err)
WaitForHeight(s.T(), s.chain.(*cosmos.CosmosChain), height+1)

s.T().Logf("height: %d", height+1)
Expand Down Expand Up @@ -1362,7 +1362,7 @@ func (s *IntegrationTestSuite) TestNetwork() {
return
default:
height, err := s.chain.(*cosmos.CosmosChain).Height(context.Background())
require.NoError(s.T(), err)
s.NoError(err)
WaitForHeight(s.T(), s.chain.(*cosmos.CosmosChain), height+1)

s.T().Logf("height: %d", height+1)
Expand Down Expand Up @@ -1416,7 +1416,7 @@ func (s *IntegrationTestSuite) TestNetwork() {
return
default:
height, err := s.chain.(*cosmos.CosmosChain).Height(context.Background())
require.NoError(s.T(), err)
s.NoError(err)
WaitForHeight(s.T(), s.chain.(*cosmos.CosmosChain), height+1)

s.T().Logf("height: %d", height+1)
Expand Down

0 comments on commit a45de07

Please sign in to comment.