Skip to content

Commit

Permalink
Fix flaky tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mpetrun5 committed Sep 16, 2024
1 parent 6958b0f commit 054ebc8
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions chains/evm/listener/handlers/step_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -300,11 +300,9 @@ func (s *StepHandlerTestSuite) Test_HandleEvents_SecondStep_ValidDeposits() {
msgs, err := readFromChannel(s.msgChan)
s.Nil(err)
s.Equal(len(msgs), 1)
s.Equal(msgs[0].Destination, uint8(2))
msgs, err = readFromChannel(s.msgChan)
s.Nil(err)
s.Equal(len(msgs), 1)
s.Equal(msgs[0].Destination, uint8(3))
_, err = readFromChannel(s.msgChan)
s.NotNil(err)
}

0 comments on commit 054ebc8

Please sign in to comment.