Skip to content

Commit 5f36263

Browse files
authored
chore: attempt to fix flakey test (#24009)
1 parent f804b4a commit 5f36263

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

client/rpc/rpc_test.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,10 @@ func (s *IntegrationTestSuite) TestQueryABCIHeight() {
8787

8888
for _, tc := range testCases {
8989
s.Run(tc.name, func() {
90-
s.network.WaitForHeight(tc.expHeight)
90+
gotHeight, err := s.network.WaitForHeight(tc.expHeight)
91+
if gotHeight != tc.expHeight {
92+
s.Fail(err.Error())
93+
}
9194

9295
val := s.network.Validators[0]
9396

testutil/network/network.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,7 @@ func (n *Network) LatestHeight() (int64, error) {
703703
// committed after a given block. If that height is not reached within a timeout,
704704
// an error is returned. Regardless, the latest height queried is returned.
705705
func (n *Network) WaitForHeight(h int64) (int64, error) {
706-
return n.WaitForHeightWithTimeout(h, 10*time.Second)
706+
return n.WaitForHeightWithTimeout(h, 20*time.Second)
707707
}
708708

709709
// WaitForHeightWithTimeout is the same as WaitForHeight except the caller can
@@ -745,7 +745,7 @@ func (n *Network) WaitForHeightWithTimeout(h int64, t time.Duration) (int64, err
745745
// blocks has been reached.
746746
func (n *Network) RetryForBlocks(retryFunc func() error, blocks int) error {
747747
for i := 0; i < blocks; i++ {
748-
n.WaitForNextBlock()
748+
_ = n.WaitForNextBlock() // ignore the error as we use the retry for validation
749749
err := retryFunc()
750750
if err == nil {
751751
return nil

0 commit comments

Comments
 (0)