fix: improve error message in network test setup (#25105)

This commit is contained in:
radik878 2025-08-06 18:24:49 +03:00 committed by GitHub
parent 969df24251
commit 41ba54bede
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -25,7 +25,7 @@ func (s *IntegrationTestSuite) SetupSuite() {
s.Require().NoError(err)
h, err := s.network.WaitForHeight(1)
s.Require().NoError(err, "stalled at height %d", h)
s.Require().NoError(err, "failed to reach height 1; got %d", h)
}
func (s *IntegrationTestSuite) TearDownSuite() {