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

This commit is contained in:
radik878
2025-08-06 15:24:49 +00:00
committed by GitHub
parent 969df24251
commit 41ba54bede
+1 -1
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() {