Skip to content

Commit

Permalink
Merge branch 'terpay/escrow-address-string' into terpay/lane-tx-info
Browse files Browse the repository at this point in the history
  • Loading branch information
davidterpay authored Nov 27, 2023
2 parents c95343b + a45de07 commit 91b2fa9
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 91b2fa9

Please sign in to comment.